mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-02-21 02:20:55 +00:00
* EOControl/EOGenericRecord.m ([EOGenericRecord
-_infoForInstanceVariableNamed:retType:retSize:retOffset:]): renamed GSObjCFindInstanceVariable in GSFindInstanceVariable * config/postgres.m4: check in /usr/local/include and /usr/local/lib * EOModeler/GNUmakefile: install headers in EOModeler/ git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@15238 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
589b3b18b8
commit
ca183f5646
5 changed files with 15 additions and 6 deletions
|
@ -1,3 +1,12 @@
|
|||
2002-12-04 Mirko Viviani <mirko.viviani@rccr.cremona.it>
|
||||
|
||||
* EOControl/EOGenericRecord.m ([EOGenericRecord
|
||||
-_infoForInstanceVariableNamed:retType:retSize:retOffset:]): renamed
|
||||
GSObjCFindInstanceVariable in GSFindInstanceVariable
|
||||
|
||||
* config/postgres.m4: check in /usr/local/include and /usr/local/lib
|
||||
* EOModeler/GNUmakefile: install headers in EOModeler/
|
||||
|
||||
2002-12-01 Manuel Guesdon <mguesdon@orange-concept.com>
|
||||
* EOAccess/EODatabase.m
|
||||
o in -entityForObject: test for EONull or nil instead of just nil
|
||||
|
|
|
@ -193,7 +193,7 @@ static const char _c_id[2] = { _C_ID, NULL };
|
|||
retSize:size
|
||||
retOffset:offset];
|
||||
*/
|
||||
ok = GSObjCFindInstanceVariable(self, [name cString], type, size, offset);
|
||||
ok = GSFindInstanceVariable(self, [name cString], type, size, offset);
|
||||
|
||||
EOFLOGObjectLevelArgs(@"EOGenericRecordKVC",
|
||||
@"Super InstanceVar named %@:%s",
|
||||
|
|
|
@ -43,7 +43,7 @@ libgnustep-db2modeler_C_FILES =
|
|||
libgnustep-db2modeler_OBJC_FILES = EOModelExtensions.m
|
||||
|
||||
libgnustep-db2modeler_HEADER_FILES_DIR = .
|
||||
libgnustep-db2modeler_HEADER_FILES_INSTALL_DIR = /EOControl
|
||||
libgnustep-db2modeler_HEADER_FILES_INSTALL_DIR = /EOModeler
|
||||
|
||||
libgnustep-db2modeler_HEADER_FILES = EOModelExtensions.h
|
||||
|
||||
|
|
|
@ -11,8 +11,8 @@ AC_ARG_WITH(pgsql-library,
|
|||
cppflags_temp="$CPPFLAGS"
|
||||
libs_temp=$LIBS
|
||||
|
||||
CPPFLAGS="$CPPFLAGS -I/usr/local/pgsql/include"
|
||||
LIBS="$LIBS -L/usr/local/pgsql/lib"
|
||||
CPPFLAGS="$CPPFLAGS -I/usr/local/include -I/usr/local/pgsql/include"
|
||||
LIBS="$LIBS -L/usr/local/lib -L/usr/local/pgsql/lib"
|
||||
|
||||
if test "$pgsql_incdir" != "no"; then
|
||||
CPPFLAGS="$CPPFLAGS -I$pgsql_incdir"
|
||||
|
|
4
configure
vendored
4
configure
vendored
|
@ -2375,8 +2375,8 @@ fi;
|
|||
cppflags_temp="$CPPFLAGS"
|
||||
libs_temp=$LIBS
|
||||
|
||||
CPPFLAGS="$CPPFLAGS -I/usr/local/pgsql/include"
|
||||
LIBS="$LIBS -L/usr/local/pgsql/lib"
|
||||
CPPFLAGS="$CPPFLAGS -I/usr/local/include -I/usr/local/pgsql/include"
|
||||
LIBS="$LIBS -L/usr/local/lib -L/usr/local/pgsql/lib"
|
||||
|
||||
if test "$pgsql_incdir" != "no"; then
|
||||
CPPFLAGS="$CPPFLAGS -I$pgsql_incdir"
|
||||
|
|
Loading…
Reference in a new issue