NON-UNIX-USE
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:2k
源码类别:

生物技术

开发平台:

C/C++

  1. Compiling PCRE on non-Unix systems
  2. ----------------------------------
  3. If you want to compile PCRE for a non-Unix system, note that it consists
  4. entirely of code written in Standard C, and so should compile successfully
  5. on any machine with a Standard C compiler and library, using normal compiling
  6. commands to do the following:
  7. (1) Copy or rename the file config.in as config.h, and change the macros that
  8. define HAVE_STRERROR and HAVE_MEMMOVE to define them as 1 rather than 0.
  9. Unfortunately, because of the way Unix autoconf works, the default setting has
  10. to be 0. You may also want to make changes to other macros in config.h. In
  11. particular, if you want to force a specific value for newline, you can define
  12. the NEWLINE macro. The default is to use 'n', thereby using whatever value
  13. your compiler gives to 'n'.
  14. (2) Copy or rename the file pcre.in as pcre.h, and change the macro definitions
  15. for PCRE_MAJOR, PCRE_MINOR, and PCRE_DATE near its start to the values set in
  16. configure.in.
  17. (3) Compile dftables.c as a stand-alone program, and then run it with
  18. the standard output sent to chartables.c. This generates a set of standard
  19. character tables.
  20. (4) Compile maketables.c, get.c, study.c and pcre.c and link them all
  21. together into an object library in whichever form your system keeps such
  22. libraries. This is the pcre library (chartables.c gets included by means of an
  23. #include directive).
  24. (5) Similarly, compile pcreposix.c and link it as the pcreposix library.
  25. (6) Compile the test program pcretest.c. This needs the functions in the
  26. pcre and pcreposix libraries when linking.
  27. (7) Run pcretest on the testinput files in the testdata directory, and check
  28. that the output matches the corresponding testoutput files. You must use the
  29. -i option when checking testinput2.
  30. If you have a system without "configure" but where you can use a Makefile, edit
  31. Makefile.in to create Makefile, substituting suitable values for the variables
  32. at the head of the file.
  33. Some help in building a Win32 DLL of PCRE in GnuWin32 environments was
  34. contributed by Paul.Sokolovsky@technologist.com. These environments are
  35. Mingw32 (http://www.xraylith.wisc.edu/~khan/software/gnu-win32/) and
  36. CygWin  (http://sourceware.cygnus.com/cygwin/). Paul comments:
  37.   For CygWin, set CFLAGS=-mno-cygwin, and do 'make dll'. You'll get
  38.   pcre.dll (containing pcreposix also), libpcre.dll.a, and dynamically
  39.   linked pgrep and pcretest. If you have /bin/sh, run RunTest (three
  40.   main test go ok, locale not supported).
  41. ****