Update configure to generate config.h
authorAdam Dickmeiss <adam@indexdata.dk>
Wed, 25 May 2011 13:20:18 +0000 (15:20 +0200)
committerAdam Dickmeiss <adam@indexdata.dk>
Wed, 25 May 2011 13:20:18 +0000 (15:20 +0200)
43 files changed:
configure.ac
src/gdu.cpp
src/gduqueue.cpp
src/limit-connect.cpp
src/pdu-observer.cpp
src/query.cpp
src/socket-observer.cpp
src/timestat.cpp
src/tstquery.cpp
src/yaz-cql2rpn.cpp
src/yaz-ir-assoc.cpp
src/yaz-marc-sample.cpp
src/yaz-my-client.cpp
src/yaz-my-server.cpp
src/yaz-pdu-assoc-thread.cpp
src/yaz-pdu-assoc.cpp
src/yaz-socket-manager.cpp
src/yaz-z-assoc.cpp
src/yaz-z-cache.cpp
src/yaz-z-databases.cpp
src/yaz-z-query.cpp
src/yaz-z-server-ill.cpp
src/yaz-z-server-sr.cpp
src/yaz-z-server-update.cpp
src/yaz-z-server.cpp
src/z-server.cpp
zlint/main.cpp
zlint/test-init-01.cpp
zlint/test-init-02.cpp
zlint/test-init-03.cpp
zlint/test-init-04.cpp
zlint/test-init-05.cpp
zlint/test-init-06.cpp
zlint/test-init-07.cpp
zlint/test-init-08.cpp
zlint/test-scan-01.cpp
zlint/test-search-01.cpp
zlint/zlint.cpp
zoom/zconn.cpp
zoom/zexcept.cpp
zoom/zquery.cpp
zoom/zrec.cpp
zoom/zrs.cpp

index ff7b63d..47669f3 100644 (file)
@@ -2,6 +2,7 @@ dnl This file is part of yazpp
 dnl Copyright (C) 1998-2011 Index Data
 AC_PREREQ(2.60)
 AC_INIT([yazpp],[1.2.5],[adam@indexdata.dk])
+AC_CONFIG_HEADERS([include/config.h])
 AC_CONFIG_SRCDIR(configure.ac)
 AC_CONFIG_AUX_DIR([config])
 AM_INIT_AUTOMAKE([1.9])
index 0d8efee..231e8ef 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yazpp/gdu.h>
 
 using namespace yazpp_1;
index 0b5cb61..1b18f38 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yazpp/gdu.h>
 #include <yazpp/gduqueue.h>
 
index b1bd57f..4af597e 100644 (file)
@@ -25,6 +25,9 @@
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yazpp/limit-connect.h>
 
 #include <time.h>
index d3f2303..2bb4078 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yazpp/pdu-observer.h>
  
 using namespace yazpp_1;
index 53bfc0b..0540543 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yazpp/query.h>
 
 using namespace yazpp_1;
index b6063c2..6c3c5b5 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yazpp/socket-observer.h>
 
 using namespace yazpp_1;
index 5ea1755..078aaac 100644 (file)
@@ -25,6 +25,9 @@
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yazpp/timestat.h>
 
 using namespace yazpp_1;
index 3dce6a2..da1e8f7 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <stdlib.h>
 #include <yazpp/z-query.h>
 
index 1351b0e..3a4b357 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yaz/log.h>
 #include <yaz/pquery.h>
 #include <yazpp/cql2rpn.h>
index 2106f93..83e953e 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <assert.h>
 
 #include <yaz/log.h>
index 3c81f1f..a11c5a2 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yazpp/z-server.h>
 
 using namespace yazpp_1;
index 7c4e479..69b4c9b 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <stdlib.h>
 #include <yaz/log.h>
 #include <yaz/options.h>
index 0ef28ae..372629c 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <stdlib.h>
 #include <yaz/log.h>
 #include <yaz/diagbib1.h>
index 095c6ec..94c3df1 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #ifdef WIN32
 #define USE_THREADS 1
 #endif
index 2d17f11..8a949cf 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <assert.h>
 #include <string.h>
 #include <yaz/log.h>
index b6b789a..a768cb4 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #if HAVE_SYS_TIME_H
 #include <sys/time.h>
 #endif
index 2a8f3b3..e389184 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <assert.h>
 #include <signal.h>
 
index 11544b3..ccb7463 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yaz/log.h>
 #include <yaz/proto.h>
 #include <yaz/copy_types.h>
index 1e35179..6e190a3 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <string.h>
 
 #include <yazpp/z-databases.h>
index 0ba1004..94e7781 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yaz/querytowrbuf.h>
 #include <yazpp/z-query.h>
 #include <yaz/pquery.h>
index f82a09a..6eec156 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yaz/log.h>
 #include <yazpp/z-server.h>
 
index b07b839..05472dd 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yaz/log.h>
 #include <yazpp/z-server.h>
 
index f86aef7..c3eb951 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yaz/log.h>
 #include <yazpp/z-server.h>
 
index 71b8f39..80928ec 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yaz/log.h>
 #include <yazpp/z-server.h>
 #include <yaz/oid_db.h>
index bb709d3..8df58d7 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yazpp/z-server.h>
 
 using namespace yazpp_1;
index a2a20cf..22a89f0 100644 (file)
@@ -1,3 +1,6 @@
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <stdlib.h>
 
 #include <yazpp/pdu-assoc.h>
index d0edf7f..3625443 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yaz/log.h>
 
 #include <zlint.h>
index b83123f..9ea59ae 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yaz/log.h>
 
 #include <zlint.h>
index b3a0c9b..0e4e7b5 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yaz/log.h>
 
 #include <zlint.h>
index be14886..e8e53e2 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yaz/log.h>
 
 #include <zlint.h>
index 6909063..f9b95f8 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yaz/log.h>
 
 #include <zlint.h>
index 793d71a..8f9a529 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yaz/log.h>
 
 #include <zlint.h>
index 15f71ae..eb52fd3 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yaz/log.h>
 #include <yaz/charneg.h>
 #include <yaz/otherinfo.h>
index 7707eae..92c8ea4 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yaz/log.h>
 #include <yaz/charneg.h>
 #include <yaz/otherinfo.h>
index cc50e5a..1e5b3d5 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yaz/log.h>
 #include <yaz/pquery.h>
 
index de0ebb8..03bc84e 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yaz/log.h>
 #include <yaz/pquery.h>
 #include <yaz/sortspec.h>
index 8853e42..d148467 100644 (file)
@@ -3,6 +3,9 @@
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <stdio.h>
 #include <stdarg.h>
 
index f016b63..5abb963 100644 (file)
@@ -1,5 +1,8 @@
 // Z39.50 Connection class
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "zoom.h"
 
 
index 007738c..282177b 100644 (file)
@@ -1,5 +1,8 @@
 // Z39.50 Exception classes
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <iostream>
 #include <errno.h>
 #include <string.h>             // for strerror(), strlen(), strcpy()
index a729235..704a20f 100644 (file)
@@ -1,5 +1,8 @@
 // Z39.50 Query classes
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "zoom.h"
 
 
index 97a2041..dc71a39 100644 (file)
@@ -1,5 +1,8 @@
 // Z39.50 Record class
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "zoom.h"
 #include <yaz/yaz-util.h>       // for yaz_matchstr()
 
index 430b8f4..1d2e4d9 100644 (file)
@@ -1,5 +1,8 @@
 // Z39.50 Result Set class
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include "zoom.h"