_ZN9dbid_listD2Ev\r
\r
; sql_create.o\r
-_Z12my_batch_endP3JCRP4B_DBPKc\r
-_Z14my_batch_startP3JCRP4B_DB\r
-_Z15my_batch_insertP3JCRP4B_DBP8ATTR_DBR\r
_Z20db_create_job_recordP3JCRP4B_DBP7JOB_DBR\r
_Z21db_create_pool_recordP3JCRP4B_DBP8POOL_DBR\r
_Z22db_create_media_recordP3JCRP4B_DBP9MEDIA_DBR\r
echo "EXPORTS"
echo " "
+NM=../../../../../cross-tools/mingw32/mingw32/bin/nm
+
OBJS="sql.o sql_create.o sql_delete.o sql_find.o sql_get.o \
sql_list.o sql_update.o"
cd cats_mysql
for i in ${OBJS}; do \
echo "; $i"; \
- nm $i | grep "^[0-9a-f]* T _" | cut -c21-; \
+ ${NM} $i | grep "^[0-9a-f]* T _" | cut -c13-; \
echo " "; \
done
-nm mysql.o | grep "^[0-9a-f]* T _" | cut -c21- | grep -v "my_mysql"
+${NM} mysql.o | grep "^[0-9a-f]* T _" | cut -c13- | grep -v "my_mysql"
for i in ${DATA}; do \
echo "$i DATA"; \
}
if (wait > 0) {
- bpipe->timer_id = start_child_timer(bpipe->worker_pid, wait);
+ bpipe->timer_id = start_child_timer(NULL, bpipe->worker_pid, wait);
}
return bpipe;
_Z13free_bregexpsP5alist
_Z14apply_bregexpsPKcP5alistPPc
_Z19bregexp_build_wherePciS_S_S_
-_Z21bregexp_escape_stringPcS_c
+_Z21bregexp_escape_stringPcPKcc
_Z28bregexp_get_build_where_sizePcS_S_
_ZN7BREGEXP10edit_substEPKcP12b_regmatch_t
_ZN7BREGEXP12return_fnameEPKci
_Z16stop_bsock_timerP8btimer_t
_Z16stop_child_timerP8btimer_t
_Z17start_bsock_timerP5BSOCKj
-_Z17start_child_timerij
+_Z17start_child_timerP3JCRij
_Z17stop_thread_timerP8btimer_t
-_Z18start_thread_timerP10pthread_t_j
-
+_Z18start_thread_timerP3JCRP10pthread_t_j
+
; cram-md5.o
_Z16cram_md5_respondP5BSOCKPKcPiS3_
_Z18cram_md5_challengeP5BSOCKPKcii
#
# Kern Sibbald, June 2007
#
+
+NM=../../../../cross-tools/mingw32/mingw32/bin/nm
echo "LIBRARY bacula.dll"
echo "EXPORTS"
echo " "
-OBJS="compat.o print.o winapi.o attribs.o bfile.o create_file.o \
- drivetype.o enable_priv.o find.o find_one.o fstype.o match.o \
- address_conf.o alist.o attr.o base64.o berrno.o bget_msg.o \
- bnet.o bnet_server.o bpipe.o breg.o bregex.o bsnprintf.o \
- bsock.o bsys.o btime.o btimers.o cram-md5.o crc32.o crypto.o \
- daemon.o dlist.o edit.o fnmatch.o idcache.o jcr.o lex.o md5.o \
- mem_pool.o message.o pythonlib.o queue.o rblist.o runscript.o \
- rwlock.o scan.o serial.o smartall.o tls.o tree.o util.o var.o \
- watchdog.o"
-
-
-for i in ${OBJS}; do \
+for i in *.o ; do \
echo "; $i"; \
- nm $i | grep "^[0-9a-f]* T _" | cut -c21-; \
+ ${NM} $i | grep "^[0-9a-f]* T _" | cut -c13- ; \
echo " "; \
done
General:
28Sep07
+kes Fix Win32 build.
kes More tweaks to the mount volume routines to get everything
right. Changed variable name from find to have_vol, which is
much easier to understand.