Error linking the CoreServices.Framework header files under CS5

Hello All,
I am porting my InDesign CS4 plugin into Indesign CS5. In this project I have used Soap connection services by using OpenTransport.h file and other files from the Coreservices framework headers.
It works fine with CS4 if I give the Path to the framework folder from the SDKs. But same if I try to do while porting into CS5 with MacOs 10.5sdk it give error and does not include the file.
I am using XCode 3.1.3 on Mac OS 10.5. Has anyone face this problem and resolved the same. If so please let me know.
Thanks all in advance.
Regards
Farzana.

the php in 10.5 uses extensions, you do not need to rebuild php to get mssql to work..
Take a look at http://downloads.topicdesk.com/docs/AddingGD2_to_PHP_on_OS_X_Server_10_5Leopard.pdf
as you can see in that example GD is built separately, mssql is the same.. do a google search on mssql.so and you will find a bunch of info (most of it is for linux but you should be able to get the info to work)

Similar Messages

  • Building PHP 5.2.5 and MySQL (Cannot find MySQL header files under /usr.)

    Hi,
    we are in big trouble here. On Mac OS X 10.4 it was no problem building PHP with additional modules. Unfortunately it´s not working this time.
    This is the error message i got when building php:
    checking for mSQL support... no
    checking for MSSQL support via FreeTDS... no
    checking for MySQL support... yes
    checking for specified location of the MySQL UNIX socket... /var/mysql/mysql.sock
    checking for MySQL UNIX socket location... /var/mysql/mysql.sock
    configure: error: Cannot find MySQL header files under /usr.
    Note that the MySQL client library is not bundled anymore!
    Looks like some libs are missing?!
    find / -iname 'libmysqlclient*'
    That doesn´t helper neither. No results.
    Any idera what´s wrong here?

    the php in 10.5 uses extensions, you do not need to rebuild php to get mssql to work..
    Take a look at http://downloads.topicdesk.com/docs/AddingGD2_to_PHP_on_OS_X_Server_10_5Leopard.pdf
    as you can see in that example GD is built separately, mssql is the same.. do a google search on mssql.so and you will find a bunch of info (most of it is for linux but you should be able to get the info to work)

  • Where to get header files under /usr/include/snmp

    My source codes relate to SNMP subagent. Currently mu codes is conpiled in a SOlaris 7 machine. I can find the needed header files in /usr/include/snmp. Now I want to build another compiling machine with SOlaris 9. But after I installed Solaris 9, I can not find the header files under /usr/include/snmp/. Is there some specific packages I need to install? Or Solaris 9 has removed or changed the name of these files?
    Thanks!
    Yong

    So say if My page ProjectPG.xml has main controller ProjectPGCO then I have to write a class xyzProjectPGCO which extends ProjectPGCO .
    Write me logic here ....in ProjectPGCO
    After that I have to modify ProjectPG.xml and set its controller as xyzProjectPGCO
    Please let me know if this is right way of doing ?
    Thanks,
    Milind

  • When i double click itunes it doesn't open it just comes up with an error saying " The itunes library.itl file cannot be found or created. The default location for this file is in the 'itunes' folder in the 'music' folder". How can i fix this?

    When i double click itunes it doesn't open it just comes up with an error saying " The itunes library.itl file cannot be found or created. The default location for this file is in the 'itunes' folder in the 'music' folder. How can i fix this problem?

    Anyone can help to advice how to solve this issue ?

  • I can't open my Itunes keep receiving error message- The iTunes Library.itl file cannot be found or created. The default location for this file is in the "i Tunes" folder in the "Music" folder

    I can't open my Itunes keep receiving error message- The iTunes Library.itl file  cannot be found or created. The default location for this file is in the "i Tunes" folder in the "Music" folder. I have even tried removing and reinstalling iTunes and it still does work because I continue to receive this error message. Please Help!

    Anyone can help to advice how to solve this issue ?

  • Error Message:The folder path 'Program Files' contains an invalid character

    I have an 80G iPod. I never had a problem with the itunes program until I switched to Vista. When I try to open iTunes I get the following error message:
    *The folder path 'Program Files' contains an invalid character*
    I have itunes installed on both my HP and on an external hard drive that I use as my backup in case something goes wrong. Neither one opens and I get the same error message on both. I have tried to uninstall iTunes and then reinstall and get the same message so I can't uninstall.
    I'm really frustrated, I need to get to my music for a huge presentation in a few days. Can anyone help?
    Thanks in advance,
    Jejo

    Have you tried working through the steps in the General section of this article?
    http://support.apple.com/kb/HT1926

  • Ther are PARAMETER LIST DISCREPANC​IES in the help file vs the NIDAQ.H header file for GPCTR_Read​_Buffer...

    PROBLEM: The function help file contains documentation for using GPCTR_Read_Buffer with 7 parmeters in the parameter list. The NADAQ.H Header file contains 8 parameters in the function declaration. Which is right? What is the correct parameter list and can an example be provided that shows how to use the function correctly? I am currently using DAQ ver 6.92 and a 6602 Counter Timer board in a buffered start/stop or ND_BUFFERED_TWO_SIGNAL_EDGE_SEPARATION_MSR application.

    Thanks for the response Filipe, I'll let you know how it goes. I only went into the header file because example code provided by NI ... paste ...
    iStatus = GPCTR_Read_Buffer(iDevice, ulGpctrNum, ND_READ_MARK, ulReadOffset, ulNumPtsToRead, ulTimeOut, &ulNumPtsRead, pulReadBuf);
    showed use of 8 parameters - in agreement with the header file and in disagreement with the on-line help file function documentation.
    Tom

  • Obj. Error when compiling multiple C odules ncluding the nidaqex.h header file

    This is a C implementation.
    I have two modules. The main program includes a call nidaqex.h . My second module is shown below. cedriver.h is simply another header that contains the counter variables and function definitions.
    When I attempt to compile both source and the module I get the following errors:
    cedrivercomputeoutput.obj .text: undefined reference to '_GPCTR_Control@12'
    cedrivercomputeoutput.obj .text: undefined reference to '_NIDAQErrorHandler@12'
    cedrivercomputeoutput.obj .text: undefined reference to '_GPCTR_Set_Application@12'
    cedrivercomputeoutput.obj .text: undefined reference to '_GPCTR_Change_Parameter@16'
    cedrivercomputeoutput.obj .text: undefined reference to '_GPCTR_Watch@16'
    It seems as though the functions from the nidaqex header file are not being recognized. Any ideas?
    Attached is the module to be compiled with the main source code. I am using the commands xxx main.c cencoderdrivercomputeoutput.c . The main program also just calls the functions at predetermined times.
    /* ================================
    / edriver.h
    / ================================*/
    #include "nidaqex.h"
    extern u32 GpctrNum_0 = ND_COUNTER_0;
    extern u32 GpctrNum_1 = ND_COUNTER_1;
    extern i16 iDevice = 1;
    extern u32 ulGpctrNum = ND_COUNTER_0;
    extern u32 ulCount = 0;
    extern i32 ulTCReached = ND_NO;
    extern i16 iIgnoreWarning = 0;
    //i16 iYieldON = 1;
    extern i16 iRetVal = 0;
    u32 ReadCounter(void);
    void SetupCounter(void);
    void DisarmCounter(void);
    TIA.
    Klaus
    Attachments:
    cEncoderDriverComputeOutput.c ‏3 KB

    Attachments:
    cEDriverComputeOutput.C ‏2 KB

  • "Content generation error. The article exceeds maximum file size limit"

    We are building a single edition app for our univesity's literary and arts magazine and have no problem previewing it through the adobe viewer app, but when we try to create a folio so we can begin the App Store process, we keep getting this pesky error. It refuses to export a folio.
    The links folder associated with the indesign file totals 474mb.
    The folder containing all the Indesign files associated with the app is 537mb.
    So how are we exceeding the 1gb file size?
    Details:
    115 pages within a single article (we converted from the print edition, rather than placing each piece into an article of toys own. Is that a problem?).
    All images (about 50) are png files of under 1mb and the videos have been exported to mp4 (total 370mb of video--do we need to switch to streaming?)
    Every page has a button linking back to the home screen. And at least one, and sometimes two, MSOs (to full-screen an image or to pop up the author's bio.
    3 mp3 audio pieces are insignificant in size.
    We removed extraneous states from the MSOs.
    Our PNG files are sized to a maximum width of 2048px.
    The .indd file itself is 58mb
    No HTML overlays, but we do have 5 or 6 hyperlinks that launch the browser.
    Any guesses why we are unable to generate a folio with this article?
    Is there a way to audit our project to see what the problem is?
    We've scoured these forums and applied the advice that seemed pertinent , so your patience and recommendations would be a great help.

    Thanks to both of you for your replies.
    We watched Adobe's tutorial videos and read the guides on Adobe's site before starting our project (a first app for our lit-mag), and never found the kind of overview that would have made the built-in functionality of the Folio system evident. Are there beginner videos you recommend we screen for the editorial board next year? It has been a great learning process for us this summer, but one involving many errors along the way.
    It seems like it won't be difficult to break up the journal into "articles," but in order to make the TOC work correctly it really is a one piece to a page thing (none of our pieces extends beyond one screen because we used scrollable overlays). Do you think we'll run into trouble with 100+ articles in our folio?
    Thanks again for taking the time to respond!
    --Clamor

  • Itunes error message - the itunes library.itl file cannot be found or created

    My itunes was working yesterday but today when i open it i get an error message saying "the itunes library.itl file cannot be found or created. the default location for this file in in the itunes folder in the music folder."
    I have tried to reinstall itunes but still getting the same error when clicking on itunes
    Please can you help?

    Hold down the Shift key while trying to launch iTunes. You should see a dialog box asking you to Choose or Create a library. Click "Choose library"
    Browse to the default location of your iTunes Library.itl file:
    Windows XP: \Documents and Settings\username\My Documents\My Music\iTunes\
    Windows Vista: \Users\username\Music\iTunes\
    Windows 7: \Users\username\My Music\iTunes\
    ... and doubleclick the file.
    Does your iTunes open for you now?

  • How to include the RNDISFN.h header file in the WIN CE Build ?

    I need to include the header file RNDISFN.h in the build of the WIN CE OS. By default the file is not included.
    What do i need to include  in the OS design to have the Header file compiled ?
    Who can help ?  (thx in advance to all these brave people that help in this forum)

    Hello Mads, please check my answer to your previous question...
    [click]
    Regards,
    Mariusz

  • Where do I find the ni488.h header file requiredby MS Visual C/C++?

    MS Visual C/C++ requires the header file ni488.h instaed of the decl-32.h file. I have been unable to locate this on our PC, the NI0488.2 install CD-ROM, or the NI web pages. Can anyone help me?

    Try
    C:\Program Files\National Instruments\NI-488.2\Languages\Microsoft C
    It is placed there by the NI-488.2 Setup program when you install the
    Language Support - Microsoft C/C++ feature.
    If you can't find the files, rerun the setup and verify that the correct
    features are installed. Look at the attached screenshot.
    "Kathleen" wrote in message
    news:[email protected]..
    > MS Visual C/C++ requires the header file ni488.h instaed of the
    > decl-32.h file. I have been unable to locate this on our PC, the
    > NI0488.2 install CD-ROM, or the NI web pages. Can anyone help me?
    [Attachment NI-setup.jpg, see below]
    Attachments:
    NI-setup.jpg ‏51 KB

  • After downloading latest version, keep getting error message "The iTunes Library .itl file cannont be found or created"? The file never moved from My Music. Repeated attempts to restore previous version result in same message. Help!!

    Help!!

    Hello Whit1erj,
    It sounds like you are not able to access your iTunes library.  With the error message you are receiving, you will want to first locate the iTunes Library.itl file.  These are the default locations for this file on a Windows computer, but if you dont find them here, you may need to search for the file:
    Windows XP: C:\Documents and Settings\username\My Documents\My Music\iTunes\
    Windows Vista: C:\Users\username\Music\iTunes\
    Windows 7: C:\Users\username\My Music\iTunes\
    Windows 8: C:\Users\username\My Music\iTunes\
    You can find the full article about iTunes file locations here:
    Where are my iTunes files located?
    http://support.apple.com/kb/ht1391
    Once you locate the iTunes Library.itl file, you can make iTunes point to it using these steps:
    Steps to create or choose a different iTunes Library file
    If iTunes is running, quit iTunes.
    If you are using Windows, hold down the Shift key and from the Start menu and choose All Programs > iTunes > iTunes.
    You should see one of the following screens:
    Then you can select Choose Library and navigate to the location of the iTunes Library.itl file.  You can find the full article here:
    iTunes: How to open an alternate iTunes Library file or create a new one
    http://support.apple.com/kb/ht1589
    Thank you for posting in the Apple Support Communities.
    Best,
    Sheila M.

  • Where can i find the User32.dll header files?

    Hi
    Is there any way to get the header file and library file of User32.dll or If I want to use a function from a User32.dll where can i get the parameters and arguments for that function which is required to call.
    Thanks & Regards
    Samuel J
    System Engineer
    Captronic Systems
    [email protected]
    Solved!
    Go to Solution.

    Hi,
    In general you don't need "user32.h" because the functions are declared in Winuser.h (you should include Windows.h).
    Otherwise, if you need user32.h only, then you can get this file together with Debugging Tools 
    After install you will get this file at C:\Program Files\Debugging Tools for Windows\winext\manifest\user32.h
    regards,
    Andrey. 

  • ALC-FUT-001-007: Syntax error in the regular expression *. from File Utilities - Find in ES2

    Has anyone encountered the above error when trying to use the Foundation - File Utilities service Find?
    This is occuring in ES2, and I have tried using an asterisk, as well as the exact file name I know exists.
    I have tried literals in the Process Properties, as well as passing it in via string variables.
    Any help is appreciated.
    Thanks
    Mark

    Thanks for your response.
    Here is what we have learned:
    We should not put the regular expression value in single quotes - eliminates the error.
    The problem is, the Find operation always returns an empty list no matter what criteria we enter - even C:\ with criteria = *.*
    ES 2 is running on a Windows 2003 machine.
    Thanks Again
    Mark

Maybe you are looking for

  • The correct sequesnce

    What is the correct sequence for the install of discoverer that is bundled with 10gias. do i have to install the database first ect database10g appserver10g discoverer10g

  • Transfer encrypted data to new phone

    Hello Sony community: I own a xperia Z with all the data encrypted. Under Setting > Security > Encryption > Encrypt phone Encrypted I got a xperia Z3 recently and so I downloaded Xperia Transfer app but it won't work as my data were encrypted. After

  • Tutorial on file upload/downloads questions

    Hi Everyone. Can you tell me how to clear a field such as the :p2_file_name field? I was thinking you could use :p2_file_name := '' like we do in Oracle Forms but that did not work. I put that code into a pl/sql process. The intent was to clear the f

  • Signature field click handler

    Hi, I'd like to execute my custom logic when a user clicks on a signature field. Currently I have tried preSign and mouseDown events. But after executing my script, the signing dialog pops up. Is there a way to make signing dialog don't appear?

  • IWork 9.0 programs won't open

    I reloaded iWork 9.0 and none of the applications open. Ideas?