myserver-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[myserver-commit] [SCM] GNU MyServer branch, master, updated. 0_9_1-72-g


From: Giuseppe Scrivano
Subject: [myserver-commit] [SCM] GNU MyServer branch, master, updated. 0_9_1-72-g68eefce
Date: Sat, 13 Feb 2010 01:25:12 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU MyServer".

The branch, master has been updated
       via  68eefce5b1d394f80326cb5e4dcd28e937fe9ad0 (commit)
      from  6701d1f6664ddd69aa658b9ad646365654614411 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------


commit 68eefce5b1d394f80326cb5e4dcd28e937fe9ad0
Author: Giuseppe Scrivano <address@hidden>
Date:   Sat Feb 13 02:24:10 2010 +0100

    Define gnulib headers location in AM_CXXFLAGS instead of CXXFLAGS.

diff --git a/myserver/binaries/web/cgi-src/math_sum/Makefile.am 
b/myserver/binaries/web/cgi-src/math_sum/Makefile.am
index e29729d..58c5510 100644
--- a/myserver/binaries/web/cgi-src/math_sum/Makefile.am
+++ b/myserver/binaries/web/cgi-src/math_sum/Makefile.am
@@ -1,4 +1,5 @@
 # Makefile for math_sum
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libmath_sum.a
 libmath_sum_a_SOURCES = math_sum.cpp
 
diff --git a/myserver/binaries/web/cgi-src/post/Makefile.am 
b/myserver/binaries/web/cgi-src/post/Makefile.am
index ee1f50b..3abeb5e 100644
--- a/myserver/binaries/web/cgi-src/post/Makefile.am
+++ b/myserver/binaries/web/cgi-src/post/Makefile.am
@@ -1,4 +1,5 @@
 # Makefile for post
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libpost.a
 libpost_a_SOURCES = post.cpp
 
diff --git a/myserver/configure.ac b/myserver/configure.ac
index eb4c55e..2373590 100644
--- a/myserver/configure.ac
+++ b/myserver/configure.ac
@@ -325,8 +325,7 @@ fi
 
 LDFLAGS="$LDFLAGS $LIBS $pic_flag"
 CFLAGS="$pic_flag $CFLAGS"
-# FIXME: Define in every Makefile.am
-CXXFLAGS="-I$(pwd)/lib $pic_flag $CXXFLAGS"
+CXXFLAGS="$pic_flag $CXXFLAGS"
 
 AC_SUBST(CFLAGS)
 AC_SUBST(CXXFLAGS)
diff --git a/myserver/src/GUI/Makefile.am b/myserver/src/GUI/Makefile.am
index b8761d1..663a419 100644
--- a/myserver/src/GUI/Makefile.am
+++ b/myserver/src/GUI/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 install:
 if BUILD_GUI
        cp ../../COPYING MyServer/GUI/
diff --git a/myserver/src/Makefile.am b/myserver/src/Makefile.am
index 3287ef7..808e836 100644
--- a/myserver/src/Makefile.am
+++ b/myserver/src/Makefile.am
@@ -1,4 +1,4 @@
-# Makefile for MyServer (./src)
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 SUBDIRS = base conf connection connections_scheduler filter http_handler \
        log plugin protocol server GUI
 AM_CPPFLAGS = $(all_includes)
diff --git a/myserver/src/base/Makefile.am b/myserver/src/base/Makefile.am
index d9b9d78..aa185b4 100644
--- a/myserver/src/base/Makefile.am
+++ b/myserver/src/base/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libbase.a
 libbase_a_SOURCES = utility.cpp
 SUBDIRS = base64 bitvec crypt dynamic_lib file files_cache read_directory \
diff --git a/myserver/src/base/base64/Makefile.am 
b/myserver/src/base/base64/Makefile.am
index 27f66c7..21f0c1b 100644
--- a/myserver/src/base/base64/Makefile.am
+++ b/myserver/src/base/base64/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libbase64.a
 libbase64_a_SOURCES = mime_utils.cpp
 SUBDIRS =
diff --git a/myserver/src/base/bitvec/Makefile.am 
b/myserver/src/base/bitvec/Makefile.am
index 09724ff..f7c1ba1 100644
--- a/myserver/src/base/bitvec/Makefile.am
+++ b/myserver/src/base/bitvec/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libbitvec.a
 libbitvec_a_SOURCES = bitvec.cpp
 SUBDIRS =
diff --git a/myserver/src/base/crypt/Makefile.am 
b/myserver/src/base/crypt/Makefile.am
index 012ca6c..a8e0740 100644
--- a/myserver/src/base/crypt/Makefile.am
+++ b/myserver/src/base/crypt/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libcrypt.a
 libcrypt_a_SOURCES = crypt_algo.cpp crypt_algo_manager.cpp md5.cpp sha1.cpp
 SUBDIRS =
diff --git a/myserver/src/base/dynamic_lib/Makefile.am 
b/myserver/src/base/dynamic_lib/Makefile.am
index 3820ed3..aa17621 100644
--- a/myserver/src/base/dynamic_lib/Makefile.am
+++ b/myserver/src/base/dynamic_lib/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libdynamic_lib.a
 libdynamic_lib_a_SOURCES = dynamiclib.cpp
 SUBDIRS =
diff --git a/myserver/src/base/file/Makefile.am 
b/myserver/src/base/file/Makefile.am
index 5128274..d521e7c 100644
--- a/myserver/src/base/file/Makefile.am
+++ b/myserver/src/base/file/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libfile.a
 libfile_a_SOURCES = file.cpp files_utility.cpp
 SUBDIRS =
diff --git a/myserver/src/base/files_cache/Makefile.am 
b/myserver/src/base/files_cache/Makefile.am
index 10e9526..bee9f99 100644
--- a/myserver/src/base/files_cache/Makefile.am
+++ b/myserver/src/base/files_cache/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libfiles_cache.a
 libfiles_cache_a_SOURCES = cached_file_buffer.cpp cached_file.cpp \
                           cached_file_factory.cpp membuf_file.cpp
diff --git a/myserver/src/base/hash_map/Makefile.am 
b/myserver/src/base/hash_map/Makefile.am
index 57daef1..76aaa13 100644
--- a/myserver/src/base/hash_map/Makefile.am
+++ b/myserver/src/base/hash_map/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libhash_map.a
 libhash_map_a_SOURCES = hash_map.cpp
 SUBDIRS =
diff --git a/myserver/src/base/home_dir/Makefile.am 
b/myserver/src/base/home_dir/Makefile.am
index 5a5f4be..f4d1e67 100644
--- a/myserver/src/base/home_dir/Makefile.am
+++ b/myserver/src/base/home_dir/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libhome_dir.a
 libhome_dir_a_SOURCES = home_dir.cpp
 SUBDIRS =
diff --git a/myserver/src/base/mem_buff/Makefile.am 
b/myserver/src/base/mem_buff/Makefile.am
index a33e97e..8abba4e 100644
--- a/myserver/src/base/mem_buff/Makefile.am
+++ b/myserver/src/base/mem_buff/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libmem_buff.a
 libmem_buff_a_SOURCES = mem_buff.cpp
 SUBDIRS =
diff --git a/myserver/src/base/multicast/Makefile.am 
b/myserver/src/base/multicast/Makefile.am
index f6e3bd8..b6f8423 100644
--- a/myserver/src/base/multicast/Makefile.am
+++ b/myserver/src/base/multicast/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libmulticast.a
 libmulticast_a_SOURCES = multicast.cpp
 SUBDIRS =
diff --git a/myserver/src/base/pipe/Makefile.am 
b/myserver/src/base/pipe/Makefile.am
index 74a5394..4ce749a 100644
--- a/myserver/src/base/pipe/Makefile.am
+++ b/myserver/src/base/pipe/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libpipe.a
 libpipe_a_SOURCES = pipe.cpp
 SUBDIRS =
diff --git a/myserver/src/base/process/Makefile.am 
b/myserver/src/base/process/Makefile.am
index 72f1ad2..2688602 100644
--- a/myserver/src/base/process/Makefile.am
+++ b/myserver/src/base/process/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libprocess.a
 libprocess_a_SOURCES = fork_server.cpp process.cpp process_server_manager.cpp
 SUBDIRS =
diff --git a/myserver/src/base/read_directory/Makefile.am 
b/myserver/src/base/read_directory/Makefile.am
index f5b15d5..4028f52 100644
--- a/myserver/src/base/read_directory/Makefile.am
+++ b/myserver/src/base/read_directory/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libread_directory.a
 libread_directory_a_SOURCES = read_directory.cpp
 SUBDIRS =
diff --git a/myserver/src/base/regex/Makefile.am 
b/myserver/src/base/regex/Makefile.am
index 2c5a53b..c7302e0 100644
--- a/myserver/src/base/regex/Makefile.am
+++ b/myserver/src/base/regex/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libregex.a
 libregex_a_SOURCES = myserver_regex.cpp
 SUBDIRS =
diff --git a/myserver/src/base/safetime/Makefile.am 
b/myserver/src/base/safetime/Makefile.am
index 023c390..9b5fe78 100644
--- a/myserver/src/base/safetime/Makefile.am
+++ b/myserver/src/base/safetime/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libsafetime.a
 libsafetime_a_SOURCES = safetime.cpp
 SUBDIRS =
diff --git a/myserver/src/base/slab/Makefile.am 
b/myserver/src/base/slab/Makefile.am
index d6129fa..363cac2 100644
--- a/myserver/src/base/slab/Makefile.am
+++ b/myserver/src/base/slab/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libslab.a
 libslab_a_SOURCES = slab.cpp
 SUBDIRS =
diff --git a/myserver/src/base/socket/Makefile.am 
b/myserver/src/base/socket/Makefile.am
index cddd4d7..7d8a25b 100644
--- a/myserver/src/base/socket/Makefile.am
+++ b/myserver/src/base/socket/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libsocket.a
 libsocket_a_SOURCES = socket.cpp ssl_socket.cpp
 SUBDIRS =
diff --git a/myserver/src/base/socket_pair/Makefile.am 
b/myserver/src/base/socket_pair/Makefile.am
index 30c3ec8..6a94351 100644
--- a/myserver/src/base/socket_pair/Makefile.am
+++ b/myserver/src/base/socket_pair/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libsocket_pair.a
 libsocket_pair_a_SOURCES = socket_pair.cpp
 SUBDIRS =
diff --git a/myserver/src/base/ssl/Makefile.am 
b/myserver/src/base/ssl/Makefile.am
index da79543..f8d5e80 100644
--- a/myserver/src/base/ssl/Makefile.am
+++ b/myserver/src/base/ssl/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libssl.a
 libssl_a_SOURCES = ssl.cpp
 SUBDIRS =
diff --git a/myserver/src/base/string/Makefile.am 
b/myserver/src/base/string/Makefile.am
index 665bb06..430f267 100644
--- a/myserver/src/base/string/Makefile.am
+++ b/myserver/src/base/string/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libstring.a
 libstring_a_SOURCES = securestr.cpp stringutils.cpp
 SUBDIRS =
diff --git a/myserver/src/base/sync/Makefile.am 
b/myserver/src/base/sync/Makefile.am
index d3bc558..bca19b0 100644
--- a/myserver/src/base/sync/Makefile.am
+++ b/myserver/src/base/sync/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libsync.a
 libsync_a_SOURCES = event.cpp mutex.cpp read_write_lock.cpp 
recursive_mutex.cpp semaphore.cpp
 SUBDIRS =
diff --git a/myserver/src/base/thread/Makefile.am 
b/myserver/src/base/thread/Makefile.am
index 44a7710..ee6fc19 100644
--- a/myserver/src/base/thread/Makefile.am
+++ b/myserver/src/base/thread/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libthread.a
 libthread_a_SOURCES = thread.cpp
 SUBDIRS =
diff --git a/myserver/src/base/unix_socket/Makefile.am 
b/myserver/src/base/unix_socket/Makefile.am
index 7aaed0d..2c6eef8 100644
--- a/myserver/src/base/unix_socket/Makefile.am
+++ b/myserver/src/base/unix_socket/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libunix_socket.a
 libunix_socket_a_SOURCES = unix_socket.cpp
 SUBDIRS =
diff --git a/myserver/src/base/xml/Makefile.am 
b/myserver/src/base/xml/Makefile.am
index 05aea1d..0fae474 100644
--- a/myserver/src/base/xml/Makefile.am
+++ b/myserver/src/base/xml/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libxml.a
 libxml_a_SOURCES = xml_parser.cpp
 SUBDIRS =
diff --git a/myserver/src/conf/Makefile.am b/myserver/src/conf/Makefile.am
index 8cd6693..303ac44 100644
--- a/myserver/src/conf/Makefile.am
+++ b/myserver/src/conf/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libconf.a
 libconf_a_SOURCES = nodetree.cpp xml_conf.cpp
 SUBDIRS = main mime security vhost
diff --git a/myserver/src/conf/main/Makefile.am 
b/myserver/src/conf/main/Makefile.am
index 440c502..c0c5fd1 100644
--- a/myserver/src/conf/main/Makefile.am
+++ b/myserver/src/conf/main/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libmain.a
 libmain_a_SOURCES = main_configuration.cpp xml_main_configuration.cpp
 SUBDIRS =
diff --git a/myserver/src/conf/mime/Makefile.am 
b/myserver/src/conf/mime/Makefile.am
index 66dddf2..498b179 100644
--- a/myserver/src/conf/mime/Makefile.am
+++ b/myserver/src/conf/mime/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libmime.a
 libmime_a_SOURCES = mime_manager.cpp xml_mime_handler.cpp
 SUBDIRS =
diff --git a/myserver/src/conf/security/Makefile.am 
b/myserver/src/conf/security/Makefile.am
index ade38ec..ebe0bb8 100644
--- a/myserver/src/conf/security/Makefile.am
+++ b/myserver/src/conf/security/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libsecurity.a
 libsecurity_a_SOURCES = auth_domain.cpp auth_method.cpp 
auth_method_factory.cpp security_cache.cpp security_domain.cpp 
security_manager.cpp security_token.cpp validator.cpp validator_factory.cpp 
xml_validator.cpp
 SUBDIRS =
diff --git a/myserver/src/conf/vhost/Makefile.am 
b/myserver/src/conf/vhost/Makefile.am
index e7af0be..3074458 100644
--- a/myserver/src/conf/vhost/Makefile.am
+++ b/myserver/src/conf/vhost/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libvhost.a
 libvhost_a_SOURCES = vhost.cpp vhost_manager.cpp ip.cpp xml_vhost_handler.cpp
 SUBDIRS =
diff --git a/myserver/src/connection/Makefile.am 
b/myserver/src/connection/Makefile.am
index 41c9695..25b1127 100644
--- a/myserver/src/connection/Makefile.am
+++ b/myserver/src/connection/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libconnection.a
 libconnection_a_SOURCES = connection.cpp
 SUBDIRS =
diff --git a/myserver/src/connections_scheduler/Makefile.am 
b/myserver/src/connections_scheduler/Makefile.am
index ebcdf2e..f6c7473 100644
--- a/myserver/src/connections_scheduler/Makefile.am
+++ b/myserver/src/connections_scheduler/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libconnections_scheduler.a
 libconnections_scheduler_a_SOURCES = connections_scheduler.cpp 
listen_threads.cpp
 SUBDIRS =
diff --git a/myserver/src/filter/Makefile.am b/myserver/src/filter/Makefile.am
index fdc8b39..53084ff 100644
--- a/myserver/src/filter/Makefile.am
+++ b/myserver/src/filter/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libfilter.a
 libfilter_a_SOURCES = filter.cpp filters_chain.cpp filters_factory.cpp 
memory_stream.cpp stream.cpp \
                        console.cpp
diff --git a/myserver/src/filter/gzip/Makefile.am 
b/myserver/src/filter/gzip/Makefile.am
index 8a6f8a7..895a22f 100644
--- a/myserver/src/filter/gzip/Makefile.am
+++ b/myserver/src/filter/gzip/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libgzip.a
 libgzip_a_SOURCES = gzip.cpp gzip_decompress.cpp
 SUBDIRS =
diff --git a/myserver/src/http_handler/Makefile.am 
b/myserver/src/http_handler/Makefile.am
index 768d3ae..cf8edb3 100644
--- a/myserver/src/http_handler/Makefile.am
+++ b/myserver/src/http_handler/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libhttp_handler.a
 libhttp_handler_a_SOURCES =
 SUBDIRS = cgi fastcgi http_dir http_file isapi mscgi proxy scgi wincgi
diff --git a/myserver/src/http_handler/cgi/Makefile.am 
b/myserver/src/http_handler/cgi/Makefile.am
index 29f3ce9..2019ca1 100644
--- a/myserver/src/http_handler/cgi/Makefile.am
+++ b/myserver/src/http_handler/cgi/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libcgi.a
 libcgi_a_SOURCES = cgi.cpp
 SUBDIRS =
diff --git a/myserver/src/http_handler/fastcgi/Makefile.am 
b/myserver/src/http_handler/fastcgi/Makefile.am
index 9050525..0bf003e 100644
--- a/myserver/src/http_handler/fastcgi/Makefile.am
+++ b/myserver/src/http_handler/fastcgi/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libfastcgi.a
 libfastcgi_a_SOURCES = fastcgi.cpp
 SUBDIRS =
diff --git a/myserver/src/http_handler/http_dir/Makefile.am 
b/myserver/src/http_handler/http_dir/Makefile.am
index 1847a1a..086f3cf 100644
--- a/myserver/src/http_handler/http_dir/Makefile.am
+++ b/myserver/src/http_handler/http_dir/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libhttp_dir.a
 libhttp_dir_a_SOURCES = http_dir.cpp
 SUBDIRS =
diff --git a/myserver/src/http_handler/http_file/Makefile.am 
b/myserver/src/http_handler/http_file/Makefile.am
index faa8264..5cb96b8 100644
--- a/myserver/src/http_handler/http_file/Makefile.am
+++ b/myserver/src/http_handler/http_file/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libhttp_file.a
 libhttp_file_a_SOURCES = http_file.cpp
 SUBDIRS =
diff --git a/myserver/src/http_handler/isapi/Makefile.am 
b/myserver/src/http_handler/isapi/Makefile.am
index 44e5b1c..f53f45a 100644
--- a/myserver/src/http_handler/isapi/Makefile.am
+++ b/myserver/src/http_handler/isapi/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libisapi.a
 libisapi_a_SOURCES = isapi.cpp
 SUBDIRS =
diff --git a/myserver/src/http_handler/mscgi/Makefile.am 
b/myserver/src/http_handler/mscgi/Makefile.am
index 30ba86f..e46cc0d 100644
--- a/myserver/src/http_handler/mscgi/Makefile.am
+++ b/myserver/src/http_handler/mscgi/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libmscgi.a
 libmscgi_a_SOURCES = mscgi.cpp mscgi_manager.cpp
 SUBDIRS =
diff --git a/myserver/src/http_handler/proxy/Makefile.am 
b/myserver/src/http_handler/proxy/Makefile.am
index c36f808..ce7d53a 100644
--- a/myserver/src/http_handler/proxy/Makefile.am
+++ b/myserver/src/http_handler/proxy/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libproxy.a
 libproxy_a_SOURCES = proxy.cpp
 SUBDIRS =
diff --git a/myserver/src/http_handler/scgi/Makefile.am 
b/myserver/src/http_handler/scgi/Makefile.am
index 667faf5..a181789 100644
--- a/myserver/src/http_handler/scgi/Makefile.am
+++ b/myserver/src/http_handler/scgi/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libscgi.a
 libscgi_a_SOURCES = scgi.cpp
 SUBDIRS =
diff --git a/myserver/src/http_handler/wincgi/Makefile.am 
b/myserver/src/http_handler/wincgi/Makefile.am
index ae01189..29c1cf0 100644
--- a/myserver/src/http_handler/wincgi/Makefile.am
+++ b/myserver/src/http_handler/wincgi/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libwincgi.a
 libwincgi_a_SOURCES = wincgi.cpp
 SUBDIRS =
diff --git a/myserver/src/log/Makefile.am b/myserver/src/log/Makefile.am
index 62c95d1..c3a2a97 100644
--- a/myserver/src/log/Makefile.am
+++ b/myserver/src/log/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = liblog.a
 liblog_a_SOURCES = log_manager.cpp
 SUBDIRS = stream
diff --git a/myserver/src/log/stream/Makefile.am 
b/myserver/src/log/stream/Makefile.am
index 9e73658..bb04fc0 100644
--- a/myserver/src/log/stream/Makefile.am
+++ b/myserver/src/log/stream/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libstream.a
 libstream_a_SOURCES = console_stream.cpp file_stream.cpp \
                log_stream.cpp log_stream_factory.cpp \
diff --git a/myserver/src/plugin/Makefile.am b/myserver/src/plugin/Makefile.am
index 7638bc5..aaa6194 100644
--- a/myserver/src/plugin/Makefile.am
+++ b/myserver/src/plugin/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libplugin.a
 libplugin_a_SOURCES =  plugin.cpp plugin_info.cpp plugins_manager.cpp 
 AM_CPPFLAGS = $(all_includes)
diff --git a/myserver/src/protocol/Makefile.am 
b/myserver/src/protocol/Makefile.am
index 0f26c60..fa72e56 100644
--- a/myserver/src/protocol/Makefile.am
+++ b/myserver/src/protocol/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libprotocol.a
 libprotocol_a_SOURCES = protocol_buffer.cpp protocol.cpp protocols_manager.cpp 
\
                        url.cpp
diff --git a/myserver/src/protocol/control/Makefile.am 
b/myserver/src/protocol/control/Makefile.am
index aae9807..bd46a92 100644
--- a/myserver/src/protocol/control/Makefile.am
+++ b/myserver/src/protocol/control/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libcontrol.a
 libcontrol_a_SOURCES = control_header.cpp control_protocol.cpp
 SUBDIRS =
diff --git a/myserver/src/protocol/ftp/Makefile.am 
b/myserver/src/protocol/ftp/Makefile.am
index 691f824..da742fa 100644
--- a/myserver/src/protocol/ftp/Makefile.am
+++ b/myserver/src/protocol/ftp/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libftp.a
 libftp_a_SOURCES = ftp.cpp ftp_lexer.cpp ftp_parser.cpp
 EXTRA_DIST = ftp_lexer.out.cpp  ftp_parser.ypp  ftp_lexer.lpp
diff --git a/myserver/src/protocol/gopher/Makefile.am 
b/myserver/src/protocol/gopher/Makefile.am
index a952fe3..c3005a3 100644
--- a/myserver/src/protocol/gopher/Makefile.am
+++ b/myserver/src/protocol/gopher/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libgopher.a
 libgopher_a_SOURCES = gopher.cpp gopher_content.cpp engine.cpp
 AM_CPPFLAGS = $(all_includes)
diff --git a/myserver/src/protocol/http/Makefile.am 
b/myserver/src/protocol/http/Makefile.am
index 98b480d..f03cb3b 100644
--- a/myserver/src/protocol/http/Makefile.am
+++ b/myserver/src/protocol/http/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libhttp.a
 libhttp_a_SOURCES = http.cpp http_data_handler.cpp http_data_read.cpp 
http_errors.cpp http_headers.cpp http_request.cpp http_req_security_domain.cpp 
http_response.cpp http_thread_context.cpp dyn_http_manager.cpp 
dyn_http_manager_list.cpp dyn_http_command.cpp dyn_http_command_manager.cpp
 SUBDIRS = env
diff --git a/myserver/src/protocol/http/env/Makefile.am 
b/myserver/src/protocol/http/env/Makefile.am
index c8a1d92..09b052a 100644
--- a/myserver/src/protocol/http/env/Makefile.am
+++ b/myserver/src/protocol/http/env/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libenv.a
 libenv_a_SOURCES = env.cpp
 SUBDIRS =
diff --git a/myserver/src/protocol/https/Makefile.am 
b/myserver/src/protocol/https/Makefile.am
index 9e05691..424f5c1 100644
--- a/myserver/src/protocol/https/Makefile.am
+++ b/myserver/src/protocol/https/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libhttps.a
 libhttps_a_SOURCES = https.cpp
 SUBDIRS =
diff --git a/myserver/src/server/Makefile.am b/myserver/src/server/Makefile.am
index d74c9c6..190c6e6 100644
--- a/myserver/src/server/Makefile.am
+++ b/myserver/src/server/Makefile.am
@@ -1,3 +1,4 @@
+AM_CXXFLAGS="-I$(top_srcdir)/lib"
 lib_LIBRARIES = libserver.a
 libserver_a_SOURCES = clients_thread.cpp server.cpp
 SUBDIRS =

-----------------------------------------------------------------------

Summary of changes:
 myserver/binaries/web/cgi-src/math_sum/Makefile.am |    1 +
 myserver/binaries/web/cgi-src/post/Makefile.am     |    1 +
 myserver/configure.ac                              |    3 +--
 myserver/src/GUI/Makefile.am                       |    1 +
 myserver/src/Makefile.am                           |    2 +-
 myserver/src/base/Makefile.am                      |    1 +
 myserver/src/base/base64/Makefile.am               |    1 +
 myserver/src/base/bitvec/Makefile.am               |    1 +
 myserver/src/base/crypt/Makefile.am                |    1 +
 myserver/src/base/dynamic_lib/Makefile.am          |    1 +
 myserver/src/base/file/Makefile.am                 |    1 +
 myserver/src/base/files_cache/Makefile.am          |    1 +
 myserver/src/base/hash_map/Makefile.am             |    1 +
 myserver/src/base/home_dir/Makefile.am             |    1 +
 myserver/src/base/mem_buff/Makefile.am             |    1 +
 myserver/src/base/multicast/Makefile.am            |    1 +
 myserver/src/base/pipe/Makefile.am                 |    1 +
 myserver/src/base/process/Makefile.am              |    1 +
 myserver/src/base/read_directory/Makefile.am       |    1 +
 myserver/src/base/regex/Makefile.am                |    1 +
 myserver/src/base/safetime/Makefile.am             |    1 +
 myserver/src/base/slab/Makefile.am                 |    1 +
 myserver/src/base/socket/Makefile.am               |    1 +
 myserver/src/base/socket_pair/Makefile.am          |    1 +
 myserver/src/base/ssl/Makefile.am                  |    1 +
 myserver/src/base/string/Makefile.am               |    1 +
 myserver/src/base/sync/Makefile.am                 |    1 +
 myserver/src/base/thread/Makefile.am               |    1 +
 myserver/src/base/unix_socket/Makefile.am          |    1 +
 myserver/src/base/xml/Makefile.am                  |    1 +
 myserver/src/conf/Makefile.am                      |    1 +
 myserver/src/conf/main/Makefile.am                 |    1 +
 myserver/src/conf/mime/Makefile.am                 |    1 +
 myserver/src/conf/security/Makefile.am             |    1 +
 myserver/src/conf/vhost/Makefile.am                |    1 +
 myserver/src/connection/Makefile.am                |    1 +
 myserver/src/connections_scheduler/Makefile.am     |    1 +
 myserver/src/filter/Makefile.am                    |    1 +
 myserver/src/filter/gzip/Makefile.am               |    1 +
 myserver/src/http_handler/Makefile.am              |    1 +
 myserver/src/http_handler/cgi/Makefile.am          |    1 +
 myserver/src/http_handler/fastcgi/Makefile.am      |    1 +
 myserver/src/http_handler/http_dir/Makefile.am     |    1 +
 myserver/src/http_handler/http_file/Makefile.am    |    1 +
 myserver/src/http_handler/isapi/Makefile.am        |    1 +
 myserver/src/http_handler/mscgi/Makefile.am        |    1 +
 myserver/src/http_handler/proxy/Makefile.am        |    1 +
 myserver/src/http_handler/scgi/Makefile.am         |    1 +
 myserver/src/http_handler/wincgi/Makefile.am       |    1 +
 myserver/src/log/Makefile.am                       |    1 +
 myserver/src/log/stream/Makefile.am                |    1 +
 myserver/src/plugin/Makefile.am                    |    1 +
 myserver/src/protocol/Makefile.am                  |    1 +
 myserver/src/protocol/control/Makefile.am          |    1 +
 myserver/src/protocol/ftp/Makefile.am              |    1 +
 myserver/src/protocol/gopher/Makefile.am           |    1 +
 myserver/src/protocol/http/Makefile.am             |    1 +
 myserver/src/protocol/http/env/Makefile.am         |    1 +
 myserver/src/protocol/https/Makefile.am            |    1 +
 myserver/src/server/Makefile.am                    |    1 +
 60 files changed, 60 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
GNU MyServer




reply via email to

[Prev in Thread] Current Thread [Next in Thread]