Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
configure.in
Package: xerces-c-src1_6_0.tar.gz [view]
Upload User: huihehuasu
Upload Date: 2007-01-10
Package Size: 6948k
Code Size: 2k
Category:
xml-soap-webservice
Development Platform:
C/C++
- dnl Process this file with autoconf to produce a configure script
- AC_INIT(SAXCount/SAXCount.hpp)
- dnl Checks for programs
- AC_PROG_CC
- AC_PROG_CXX
- AC_PROG_INSTALL
- AC_CHECK_PROG(AUTOCONF, autoconf, autoconf, true)
- dnl Checks for libraries
- AC_CHECK_LIB(m, floor)
- dnl special pthread handling (AIX uses pthreads instead of pthread)
- AC_CHECK_LIB(pthread, pthread_create)
- if test $ac_cv_lib_pthread_pthread_create = no; then
- AC_CHECK_LIB(pthreads, pthread_create)
- fi
- dnl Checks for header files
- AC_CHECK_HEADERS(inttypes.h)
- if test $ac_cv_header_inttypes_h = no; then
- HAVE_INTTYPES_H=0
- else
- HAVE_INTTYPES_H=1
- fi
- AC_SUBST(HAVE_INTTYPES_H)
- dnl Determine the host system and Makefile fragment
- AC_CANONICAL_HOST
- dnl Platform-specific Makefile setup
- case "${host}" in
- *-*-solaris*) platform=SOLARIS ;;
- *-*-sysv5*) platform=UNIXWARE ;;
- *-*-UnixWare*) platform=UNIXWARE ;;
- *-*-*unixware*) platform=UNIXWARE ;;
- *-*-sysv5uw7*) platform=UNIXWARE ;;
- *-*-linux*) platform=LINUX ;;
- *-*-freebsd*) platform=FREEBSD ;;
- *-*-irix*) platform=IRIX ;;
- *-*-aix*) platform=AIX ;;
- *-*-hp*) platform=HPUX ;
- case "${host}" in
- *-*-hpux11*) osver=HPUX11;;
- *-*-hpux10*) osver=HPUX10;;
- *) osver=HPUX11;;
- esac;;
- *-*-mvs*) platform=OS390 ;;
- *-*-os400*) platform=OS400 ;;
- *-*-OS400*) platform=OS400 ;;
- *-*-osf*) platform=TRU64 ;;
- *-apple-*) platform=MACOSX ;;
- *) platform=UNKNOWN ;;
- esac
- AC_SUBST(platform)
- compiler=${CXX}
- AC_SUBST(compiler)
- # prefix=${prefix}
- AC_SUBST(prefix)
- cxxflags=${CXXFLAGS}
- AC_SUBST(cxxflags)
- cflags=${CFLAGS}
- AC_SUBST(cflags)
- ldflags=${LDFLAGS}
- AC_SUBST(ldflags)
- dnl output the Makefiles
- AC_OUTPUT([Makefile
- SAXCount/Makefile
- SAX2Count/Makefile
- DOMCount/Makefile
- IDOMCount/Makefile
- SAXPrint/Makefile
- SAX2Print/Makefile
- DOMPrint/Makefile
- IDOMPrint/Makefile
- MemParse/Makefile
- Redirect/Makefile
- PParse/Makefile
- StdInParse/Makefile
- EnumVal/Makefile
- SEnumVal/Makefile
- CreateDOMDocument/Makefile])
- echo
- echo Having build problems? Read instructions at http://xml.apache.org/xerces-c/build.html