Changeset 439

Show
Ignore:
Timestamp:
08/26/09 17:19:39 (15 years ago)
Author:
bhilburn
Message:

Fixed local includes. In order for autofoo installs to work, the
install breaks.

Location:
vtcross/trunk/src
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • vtcross/trunk/src/libvtcross/swig/Makefile.am

    r412 r439  
    1515include $(top_srcdir)/Makefile.common 
    1616 
    17  
    1817BUILT_SOURCES = $(srcdir)/libvtcross_wrap.cpp 
    1918SWIG_SOURCES = libvtcross.i 
    2019 
    21 INCLUDES = -I$(top_srcdir)/src/include/vtcross 
    22  
     20INCLUDES = -I$(top_srcdir)/src/include 
    2321 
    2422pkgpython_PYTHON = cross.py __init__.py 
  • vtcross/trunk/src/libvtcross/swig/libvtcross.i

    r412 r439  
    1717%module cross 
    1818%{ 
    19 #include "libvtcross.h" 
    20 #include "containers.h" 
     19#include "vtcross/libvtcross.h" 
     20#include "vtcross/containers.h" 
    2121%} 
    2222 
     
    2525%include "std_string.i" 
    2626 
    27 %include "containers.h" 
    28 %include "libvtcross.h" 
     27%include "vtcross/containers.h" 
     28%include "vtcross/libvtcross.h" 
    2929 
    3030%apply const std::string & { std::string * }; 
  • vtcross/trunk/src/service_management_layer/ServiceManagementLayer.cpp

    r438 r439  
    2727 
    2828 
     29#include <cmath> 
     30#include <cstring> 
    2931#include <stdlib.h> 
    3032#include <string.h> 
    3133#include <stdio.h> 
    32 #include <cstring> 
    3334#include <stdint.h> 
    34  
    35 #include "vtcross/common.h" 
    36  
    37 #include "components.h" 
    38 #include "vtcross/containers.h" 
    39 #include "vtcross/debug.h" 
    40 #include "vtcross/error.h" 
    41 #include "vtcross/socketcomm.h" 
    42 #include <cstring> 
    43 #include <stdint.h> 
    44 #include <math.h> 
    4535 
    4636#include <arpa/inet.h> 
     
    5848#include "tinyxml/tinystr.h" 
    5949 
    60 #include "sqlite3.h" 
     50#include <sqlite3.h> 
     51 
     52#include "vtcross/debug.h" 
     53#include "vtcross/error.h" 
     54#include "vtcross/common.h" 
     55#include "vtcross/components.h" 
     56#include "vtcross/containers.h" 
     57#include "vtcross/socketcomm.h" 
     58 
    6159 
    6260typedef struct services_s *services_DB;