r1735: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 3 Apr 2002 17:58:23 +0000 (17:58 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 3 Apr 2002 17:58:23 +0000 (17:58 +0000)
interfaces/clsql-uffi/Makefile
interfaces/mysql/Makefile
sql/usql.cl

index 9c474211b3a1ca91b6dff19930148a7b95fd13f8..dae44e93a6f06e208cdf1dfe9d3df214bf083316 100644 (file)
@@ -7,7 +7,7 @@
 #  Programer:    Kevin M. Rosenberg
 #  Date Started: Mar 2002
 #
-#  CVS Id:   $Id: Makefile,v 1.4 2002/04/03 04:06:05 kevin Exp $
+#  CVS Id:   $Id: Makefile,v 1.5 2002/04/03 17:58:22 kevin Exp $
 #
 # This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 #
 # These variables are correct for GCC
 CC=gcc
 SHARED_CC_OPT=-fPIC -DPIC
-
-#SHARED_LD_OPT=-r # For FreeBSD and Solaris (CMUCL)
-SHARED_LD_OPT=-Bshareable -Bdynamic  # For Linux (ALL) and FreeBSD (ACL)
+SHARED_LD_OPT=-shared  # For Linux (ALL) and FreeBSD (ACL)
+LD=gcc
 
 # Use these for Sun's C compiler and Solaris (ACL)
 #CC=cc
 #SHARED_CC_OPT=-KPIC
 #SHARED_LD_OPT=-G
-
+#LD=ld
 
 # Nothing to configure beyond this point
 
@@ -41,7 +40,7 @@ all: $(shared_lib)
 
 $(shared_lib): $(source) Makefile
        $(CC) ${SHARED_CC_OPT} -c $(source) -o $(object)
-       ld ${SHARED_LD_OPT} $(object) -o $(shared_lib)
+       $(LD) ${SHARED_LD_OPT} $(object) -o $(shared_lib)
        rm $(object)
 
 clean:
index c674ebb20c90d0e7ac4003210ce02d55da4609de..17099e5d879ce61904cc3ae0de913886fd10227c 100644 (file)
@@ -7,7 +7,7 @@
 #  Programer:    Kevin M. Rosenberg
 #  Date Started: Mar 2002
 #
-#  CVS Id:   $Id: Makefile,v 1.5 2002/04/03 04:54:17 kevin Exp $
+#  CVS Id:   $Id: Makefile,v 1.6 2002/04/03 17:58:23 kevin Exp $
 #
 # This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 #
 # (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ###########################################################################
 
-
 # These variables are correct for GCC
 CC=gcc
 SHARED_CC_OPT=-fPIC -DPIC
-
-#SHARED_LD_OPT=-r -Bdynamic -whole-archive # For FreeBSD and Solaris (CMUCL)
-SHARED_LD_OPT=-Bshareable -Bdynamic  # For Linux (ALL) and FreeBSD (ACL)
+SHARED_LD_OPT=-shared
+LD=gcc
 
 # Use these for Sun's C compiler and Solaris (ACL)
 #CC=cc
 #SHARED_CC_OPT=-KPIC
 #SHARED_LD_OPT=-G
-
+#LD=ld
 
 # Set to the directory where you have installed mysql's library
 MYSQL_DIR=/opt/mysql
@@ -50,7 +48,7 @@ all: $(shared_lib)
 
 $(shared_lib): $(source) Makefile $(MYSQL_LIB_FILE)
        $(CC) ${SHARED_CC_OPT} -I $(MYSQL_INCLUDE) -c $(source) -o $(object)
-       ld ${SHARED_LD_OPT} $(object) $(MYSQL_LIB_FILE) -o $(shared_lib)
+       $(LD) ${SHARED_LD_OPT} $(object) $(MYSQL_LIB_FILE) -o $(shared_lib)
        rm $(object)
 
 clean:
index 5afb663c96cb859c81229e50dbf3c0901beef545..9d96874f2033fc514db01739bfb9b941bbee38e3 100644 (file)
@@ -8,7 +8,7 @@
 ;;;; Programmers:   Kevin M. Rosenberg and onShore Development Inc
 ;;;; Date Started:  Mar 2002
 ;;;;
-;;;; $Id: usql.cl,v 1.1 2002/04/01 05:27:55 kevin Exp $
+;;;; $Id: usql.cl,v 1.2 2002/04/03 17:58:23 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;; and onShore Development Inc
@@ -96,14 +96,14 @@ specifies the database to operation on, defaulting to
 (defun sequence-next (name &key (database *default-database*))
   (database-sequence-next name database))
 
-
+#+ignore
 (defclass sql-typecast-exp (sql-value-exp)
   ()
   (:documentation
    "An SQL typecast expression.")
   )
 
-
+#+ignore
 (defclass sql-value-exp (%sql-expression)
   ((modifier
     :initarg :modifier