summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLubos Dolezel <lubos@dolezel.info>2015-06-02 20:46:46 +0200
committerLubos Dolezel <lubos@dolezel.info>2015-06-02 20:46:46 +0200
commitbf8bdac13a2d399ddded91de4bfb05e8dad0a0c8 (patch)
tree1d423ae1de8622bd430d4a1f86030b971f8fa228 /src
parent51b5c517de53e867c0bcadba1d9736f73e264b1b (diff)
downloadtwinkle-bf8bdac13a2d399ddded91de4bfb05e8dad0a0c8.tar
twinkle-bf8bdac13a2d399ddded91de4bfb05e8dad0a0c8.tar.gz
twinkle-bf8bdac13a2d399ddded91de4bfb05e8dad0a0c8.tar.lz
twinkle-bf8bdac13a2d399ddded91de4bfb05e8dad0a0c8.tar.xz
twinkle-bf8bdac13a2d399ddded91de4bfb05e8dad0a0c8.zip
Removed old build system
twinkle.desktop is now installed
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am104
-rw-r--r--src/audio/Makefile.am49
-rw-r--r--src/audio/gsm/Makefile.am32
-rw-r--r--src/audits/Makefile.am9
-rw-r--r--src/gui/lang/Makefile.am38
-rw-r--r--src/gui/twinkle.pro418
-rw-r--r--src/im/Makefile.am9
-rw-r--r--src/mwi/Makefile.am29
-rw-r--r--src/parser/Makefile.am195
-rw-r--r--src/patterns/Makefile.am7
-rw-r--r--src/presence/Makefile.am17
-rw-r--r--src/sdp/Makefile.am27
-rw-r--r--src/sockets/Makefile.am30
-rw-r--r--src/stun/Makefile.am15
-rw-r--r--src/threads/Makefile.am11
-rw-r--r--src/utils/Makefile.am11
16 files changed, 0 insertions, 1001 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
deleted file mode 100644
index 52a21db..0000000
--- a/src/Makefile.am
+++ /dev/null
@@ -1,104 +0,0 @@
-AM_LDFLAGS = -L $(libdir)
-
-AM_CPPFLAGS = -Wall $(CCRTP_CFLAGS) $(XML2_CFLAGS) -DDATADIR=\"$(pkgdatadir)\"
-
-noinst_PROGRAMS = twinkle
-
-noinst_LIBRARIES = libtwinkle.a
-
-twinkle_SOURCES = main.cpp
-
-twinkle_LDADD = libtwinkle.a\
- $(top_builddir)/src/parser/libsipparser.a\
- $(top_builddir)/src/sdp/libsdpparser.a\
- $(top_builddir)/src/sockets/libsocket.a\
- $(top_builddir)/src/threads/libthread.a\
- $(top_builddir)/src/audio/libaudio.a\
- $(top_builddir)/src/audits/libaudits.a\
- $(top_builddir)/src/stun/libstun.a\
- $(top_builddir)/src/mwi/libmwi.a\
- $(top_builddir)/src/im/libim.a\
- $(top_builddir)/src/presence/libpresence.a\
- $(top_builddir)/src/patterns/libpatterns.a\
- $(top_builddir)/src/utils/libutils.a\
- $(GSM_LIBS)\
- $(CCRTP_LIBS)\
- $(XML2_LIBS)\
- -lncurses \
- -lreadline \
- -lsndfile\
- -lmagic
-
-libtwinkle_a_SOURCES =\
- abstract_dialog.cpp\
- address_book.cpp\
- auth.cpp\
- call_history.cpp\
- call_script.cpp\
- client_request.cpp\
- cmd_socket.cpp\
- dialog.cpp\
- diamondcard.cpp\
- epa.cpp\
- events.cpp\
- id_object.cpp\
- line.cpp\
- listener.cpp\
- log.cpp\
- phone.cpp\
- phone_user.cpp\
- prohibit_thread.cpp\
- redirect.cpp\
- sender.cpp\
- service.cpp\
- session.cpp\
- sub_refer.cpp\
- subscription.cpp\
- subscription_dialog.cpp\
- sys_settings.cpp\
- timekeeper.cpp\
- transaction.cpp\
- transaction_layer.cpp\
- transaction_mgr.cpp\
- user.cpp\
- userintf.cpp\
- util.cpp\
- abstract_dialog.h\
- address_book.h\
- auth.h\
- call_history.h\
- call_script.h\
- client_request.h\
- cmd_socket.h\
- dialog.h\
- diamondcard.h\
- epa.h\
- events.h\
- exceptions.h\
- id_object.h\
- line.h\
- listener.h\
- log.h\
- phone.h\
- phone_user.h\
- prohibit_thread.h\
- protocol.h\
- redirect.h\
- sender.h\
- sequence_number.h\
- service.h\
- session.h\
- sub_refer.h\
- subscription.h\
- subscription_dialog.h\
- sys_settings.h\
- timekeeper.h\
- transaction.h\
- transaction_layer.h\
- transaction_mgr.h\
- translator.h\
- user.h\
- userintf.h\
- util.h
-
-SUBDIRS = audio audits im mwi parser patterns presence sdp sockets stun threads utils . gui gui/lang
diff --git a/src/audio/Makefile.am b/src/audio/Makefile.am
deleted file mode 100644
index ab897eb..0000000
--- a/src/audio/Makefile.am
+++ /dev/null
@@ -1,49 +0,0 @@
-AM_CPPFLAGS = \
- -Wall \
- -I$(top_srcdir)/src \
- $(CCRTP_CFLAGS) \
- $(XML2_CFLAGS)
-
-noinst_LIBRARIES = libaudio.a
-
-libaudio_a_SOURCES =\
- audio_device.cpp\
- audio_decoder.cpp\
- audio_encoder.cpp\
- audio_codecs.cpp\
- audio_rx.cpp\
- audio_session.cpp\
- audio_tx.cpp\
- dtmf_player.cpp\
- freq_gen.cpp\
- g711.cpp\
- g721.cpp\
- g723_16.cpp\
- g723_24.cpp\
- g723_40.cpp\
- g72x.cpp\
- media_buffer.cpp\
- rtp_telephone_event.cpp\
- tone_gen.cpp\
- twinkle_rtp_session.cpp\
- twinkle_zrtp_ui.cpp\
- audio_device.h\
- audio_decoder.h\
- audio_encoder.h\
- audio_codecs.h\
- audio_rx.h\
- audio_session.h\
- audio_tx.h\
- dtmf_player.h\
- freq_gen.h\
- g711.h\
- g72x.h\
- media_buffer.h\
- rtp_telephone_event.h\
- tone_gen.h\
- twinkle_rtp_session.h\
- twinkle_zrtp_ui.h
-
-SUBDIRS = gsm
-
-EXTRA_DIST = README_G711
diff --git a/src/audio/gsm/Makefile.am b/src/audio/gsm/Makefile.am
deleted file mode 100644
index 3d437a1..0000000
--- a/src/audio/gsm/Makefile.am
+++ /dev/null
@@ -1,32 +0,0 @@
-AM_CPPFLAGS = \
- -I$(srcdir)/inc \
- -DSASR -DNeedFunctionPrototypes=1
-
-noinst_LIBRARIES = libgsm.a
-
-libgsm_a_SOURCES =\
- src/add.cpp\
- src/code.cpp\
- src/debug.cpp\
- src/decode.cpp\
- src/long_term.cpp\
- src/lpc.cpp\
- src/preprocess.cpp\
- src/rpe.cpp\
- src/gsm_destroy.cpp\
- src/gsm_decode.cpp\
- src/gsm_encode.cpp\
- src/gsm_explode.cpp\
- src/gsm_implode.cpp\
- src/gsm_create.cpp\
- src/gsm_print.cpp\
- src/gsm_option.cpp\
- src/short_term.cpp\
- src/table.cpp\
- inc/gsm.h\
- inc/proto.h\
- inc/config.h\
- inc/private.h\
- inc/unproto.h
-
-EXTRA_DIST = COPYRIGHT MACHINES
diff --git a/src/audits/Makefile.am b/src/audits/Makefile.am
deleted file mode 100644
index 0c72765..0000000
--- a/src/audits/Makefile.am
+++ /dev/null
@@ -1,9 +0,0 @@
-AM_CPPFLAGS = \
- -Wall \
- -I$(top_srcdir)/src
-
-noinst_LIBRARIES = libaudits.a
-
-libaudits_a_SOURCES =\
- memman.cpp\
- memman.h
diff --git a/src/gui/lang/Makefile.am b/src/gui/lang/Makefile.am
deleted file mode 100644
index 6b9c49b..0000000
--- a/src/gui/lang/Makefile.am
+++ /dev/null
@@ -1,38 +0,0 @@
-pkglangdir = $(pkgdatadir)/lang
-
-pkglang_DATA = \
- twinkle_nl.qm \
- twinkle_de.qm \
- twinkle_cs.qm \
- twinkle_fr.qm \
- twinkle_ru.qm \
- twinkle_sv.qm
-
-CLEANFILES = $(pkglang_DATA)
-
-EXTRA_DIST = \
- twinkle_nl.ts \
- twinkle_de.ts \
- twinkle_cs.ts \
- twinkle_fr.ts \
- twinkle_ru.ts \
- twinkle_sv.ts \
- twinkle_xx.ts
-
-twinkle_nl.qm: $(top_builddir)/src/gui/twinkle $(top_srcdir)/src/gui/twinkle.pro
- lrelease -compress $(srcdir)/twinkle_nl.ts -qm $@
-
-twinkle_de.qm: $(top_builddir)/src/gui/twinkle $(top_srcdir)/src/gui/twinkle.pro
- lrelease -compress $(srcdir)/twinkle_de.ts -qm $@
-
-twinkle_cs.qm: $(top_builddir)/src/gui/twinkle $(top_srcdir)/src/gui/twinkle.pro
- lrelease -compress $(srcdir)/twinkle_cs.ts -qm $@
-
-twinkle_fr.qm: $(top_builddir)/src/gui/twinkle $(top_srcdir)/src/gui/twinkle.pro
- lrelease -compress $(srcdir)/twinkle_fr.ts -qm $@
-
-twinkle_ru.qm: $(top_builddir)/src/gui/twinkle $(top_srcdir)/src/gui/twinkle.pro
- lrelease -compress $(srcdir)/twinkle_ru.ts -qm $@
-
-twinkle_sv.qm: $(top_builddir)/src/gui/twinkle $(top_srcdir)/src/gui/twinkle.pro
- lrelease -compress $(srcdir)/twinkle_sv.ts -qm $@
diff --git a/src/gui/twinkle.pro b/src/gui/twinkle.pro
deleted file mode 100644
index 0fee90b..0000000
--- a/src/gui/twinkle.pro
+++ /dev/null
@@ -1,418 +0,0 @@
-TEMPLATE = app
-LANGUAGE = C++
-
-CONFIG += qt warn_on debug thread
-
-LIBS += ../libtwinkle.a ../parser/libsipparser.a ../sdp/libsdpparser.a ../sockets/libsocket.a ../threads/libthread.a ../audio/libaudio.a ../audits/libaudits.a ../stun/libstun.a ../mwi/libmwi.a ../im/libim.a ../patterns/libpatterns.a ../presence/libpresence.a ../utils/libutils.a -lsndfile -lmagic -lncurses -lreadline -lX11
-
-DEFINES += QT_NO_STL
-
-INCLUDEPATH += ..
-
-HEADERS += gui.h \
- dtmfform.h \
- deregisterform.h \
- logviewform.h \
- numberconversionform.h \
- getprofilenameform.h \
- historylistview.h \
- freedesksystray.h \
- twinklesystray.h \
- address_finder.h \
- qt_translator.h \
- core_strings.h \
- addresslistviewitem.h \
- yesnodialog.h \
- command_args.h \
- messageformview.h \
- buddylistview.h \
- textbrowsernoautolink.h \
- twinkleapplication.h
-
-SOURCES += main.cpp \
- gui.cpp \
- dtmfform.cpp \
- deregisterform.cpp \
- logviewform.cpp \
- numberconversionform.cpp \
- getprofilenameform.cpp \
- historylistview.cpp \
- freedesksystray.cpp \
- twinklesystray.cpp \
- address_finder.cpp \
- addresslistviewitem.cpp \
- yesnodialog.cpp \
- messageformview.cpp \
- buddylistview.cpp \
- twinkleapplication.cpp
-
-FORMS = dtmfform.ui \
- deregisterform.ui \
- logviewform.ui \
- numberconversionform.ui \
- getprofilenameform.ui
-
-#The following line was changed from FORMS to FORMS3 by qt3to4
-FORMS3 = mphoneform.ui \
- inviteform.ui \
- redirectform.ui \
- termcapform.ui \
- selectnicform.ui \
- srvredirectform.ui \
- authenticationform.ui \
- userprofileform.ui \
- selectprofileform.ui \
- transferform.ui \
- syssettingsform.ui \
- wizardform.ui \
- getaddressform.ui \
- historyform.ui \
- selectuserform.ui \
- addresscardform.ui \
- messageform.ui \
- buddyform.ui \
- sendfileform.ui \
- diamondcardprofileform.ui
-
-RESOURCES += icons.qrc
-
-IMAGES = images/filenew \
- images/filesave \
- images/print \
- images/undo \
- images/redo \
- images/editcut \
- images/editcopy \
- images/editpaste \
- images/searchfind \
- images/invite.png \
- images/answer.png \
- images/bye.png \
- images/reject.png \
- images/redirect.png \
- images/hold.png \
- images/dtmf.png \
- images/bye-disabled.png \
- images/redial.png \
- images/redial-disabled.png \
- images/invite-disabled.png \
- images/answer-disabled.png \
- images/reject-disabled.png \
- images/redirect-disabled.png \
- images/hold-disabled.png \
- images/dtmf-disabled.png \
- images/penguin.png \
- images/package_network.png \
- images/kmix.png \
- images/package_system.png \
- images/yast_babelfish.png \
- images/clock.png \
- images/yast_PhoneTTOffhook.png \
- images/penguin_big.png \
- images/password.png \
- images/kcmpci.png \
- images/penguin-small.png \
- images/conf.png \
- images/conf-disabled.png \
- images/mute.png \
- images/mute-disabled.png \
- images/twinkle16.png \
- images/twinkle48.png \
- images/twinkle32.png \
- images/transfer-disabled.png \
- images/transfer.png \
- images/log.png \
- images/dtmf-2.png \
- images/dtmf-3.png \
- images/dtmf-5.png \
- images/dtmf-6.png \
- images/dtmf-7.png \
- images/dtmf-8.png \
- images/dtmf-9.png \
- images/dtmf-4.png \
- images/dtmf-1.png \
- images/dtmf-0.png \
- images/dtmf-star.png \
- images/dtmf-pound.png \
- images/dtmf-a.png \
- images/dtmf-b.png \
- images/dtmf-c.png \
- images/dtmf-d.png \
- images/twinkle24.png \
- images/exit.png \
- images/kontact_contacts.png \
- images/ok.png \
- images/cancel.png \
- images/1rightarrow.png \
- images/1leftarrow-yellow.png \
- images/editdelete.png \
- images/kcmpci16.png \
- images/kontact_contacts-disabled.png \
- images/sys_auto_ans.png \
- images/sys_auto_ans_dis.png \
- images/sys_busy_estab.png \
- images/sys_busy_estab_dis.png \
- images/sys_busy_trans.png \
- images/sys_busy_trans_dis.png \
- images/sys_dnd.png \
- images/sys_dnd_dis.png \
- images/sys_idle.png \
- images/sys_idle_dis.png \
- images/sys_redir.png \
- images/sys_redir_dis.png \
- images/sys_services.png \
- images/sys_services_dis.png \
- images/sys_hold.png \
- images/sys_hold_dis.png \
- images/sys_mute.png \
- images/sys_mute_dis.png \
- images/network.png \
- images/knotify.png \
- images/fileopen.png \
- images/fileopen-disabled.png \
- images/cf.png \
- images/auto_answer.png \
- images/auto_answer-disabled.png \
- images/cancel-disabled.png \
- images/cf-disabled.png \
- images/missed-disabled.png \
- images/missed.png \
- images/sys_missed.png \
- images/sys_missed_dis.png \
- images/twinkle16-disabled.png \
- images/gear.png \
- images/reg_failed-disabled.png \
- images/reg_failed.png \
- images/no-indication.png \
- images/contexthelp.png \
- images/settings.png \
- images/reg-query.png \
- images/log_small.png \
- images/qt-logo.png \
- images/1leftarrow.png \
- images/1uparrow.png \
- images/1downarrow.png \
- images/kontact_contacts32.png \
- images/encrypted.png \
- images/sys_encrypted.png \
- images/sys_encrypted_dis.png \
- images/encrypted32.png \
- images/encrypted-disabled.png \
- images/stat_conference.png \
- images/stat_established.png \
- images/stat_outgoing.png \
- images/stat_ringing.png \
- images/stat_mute.png \
- images/stat_established_nomedia.png \
- images/encrypted_verified.png \
- images/sys_encrypted_verified.png \
- images/sys_encrypted_verified_dis.png \
- images/consult-xfer.png \
- images/mwi_new16.png \
- images/mwi_none16.png \
- images/mwi_none16_dis.png \
- images/sys_mwi.png \
- images/sys_mwi_dis.png \
- images/mwi_none.png \
- images/mwi_failure16.png \
- images/presence_offline.png \
- images/presence_online.png \
- images/presence_failed.png \
- images/presence_rejected.png \
- images/presence_unknown.png \
- images/edit16.png \
- images/message.png \
- images/edit.png \
- images/buddy.png \
- images/message32.png \
- images/presence.png \
- images/save_as.png \
- images/attach.png \
- images/mime_application.png \
- images/mime_audio.png \
- images/mime_image.png \
- images/mime_text.png \
- images/mime_video.png
-
-TRANSLATIONS = lang/twinkle_nl.ts \
- lang/twinkle_de.ts \
- lang/twinkle_cs.ts \
- lang/twinkle_fr.ts \
- lang/twinkle_ru.ts \
- lang/twinkle_sv.ts \
- lang/twinkle_xx.ts
-
-unix {
- UI_DIR = .ui
- MOC_DIR = .moc
- OBJECTS_DIR = .obj
-}
-
-include( ../../qtccxxincl.pro )
-#The following line was inserted by qt3to4
-QT += qt3support
-#The following line was inserted by qt3to4
-CONFIG += uic3
-
-OTHER_FILES += \
- images/yast_PhoneTTOffhook.png \
- images/yast_babelfish.png \
- images/undo \
- images/twinkle48.png \
- images/twinkle32.png \
- images/twinkle24.png \
- images/twinkle16.png \
- images/twinkle16-disabled.png \
- images/transfer.png \
- images/transfer-disabled.png \
- images/telephone-hook.png \
- images/sys_services_dis.png \
- images/sys_services.png \
- images/sys_redir_dis.png \
- images/sys_redir.png \
- images/sys_mwi_dis.png \
- images/sys_mwi.png \
- images/sys_mute_dis.png \
- images/sys_mute.png \
- images/sys_missed_dis.png \
- images/sys_missed.png \
- images/sys_idle_dis.png \
- images/sys_idle.png \
- images/sys_hold_dis.png \
- images/sys_hold.png \
- images/sys_encrypted_verified_dis.png \
- images/sys_encrypted_verified.png \
- images/sys_encrypted_dis.png \
- images/sys_encrypted.png \
- images/sys_dnd_dis.png \
- images/sys_dnd.png \
- images/sys_busy_trans_dis.png \
- images/sys_busy_trans.png \
- images/sys_busy_estab_dis.png \
- images/sys_busy_estab.png \
- images/sys_auto_ans_dis.png \
- images/sys_auto_ans.png \
- images/stat_ringing.png \
- images/stat_outgoing.png \
- images/stat_mute.png \
- images/stat_established_nomedia.png \
- images/stat_established.png \
- images/stat_conference.png \
- images/settings.png \
- images/searchfind \
- images/save_as.png \
- images/reject.png \
- images/reject-disabled.png \
- images/reg_failed.png \
- images/reg_failed-disabled.png \
- images/reg-query.png \
- images/redo \
- images/redirect.png \
- images/redirect-disabled.png \
- images/redial.png \
- images/redial-disabled.png \
- images/qt-logo.png \
- images/print \
- images/presence_unknown.png \
- images/presence_rejected.png \
- images/presence_online.png \
- images/presence_offline.png \
- images/presence_failed.png \
- images/presence.png \
- images/penguin_big.png \
- images/penguin.png \
- images/penguin-small.png \
- images/password.png \
- images/package_system.png \
- images/package_network.png \
- images/ok.png \
- images/no-indication.png \
- images/network.png \
- images/mwi_none16_dis.png \
- images/mwi_none16.png \
- images/mwi_none.png \
- images/mwi_new16.png \
- images/mwi_failure16.png \
- images/mute.png \
- images/mute-disabled.png \
- images/missed.png \
- images/missed-disabled.png \
- images/mime_video.png \
- images/mime_text.png \
- images/mime_image.png \
- images/mime_audio.png \
- images/mime_application.png \
- images/message32.png \
- images/message.png \
- images/log_small.png \
- images/log.png \
- images/kontact_contacts32.png \
- images/kontact_contacts.png \
- images/kontact_contacts-disabled.png \
- images/knotify.png \
- images/kmix.png \
- images/kcmpci16.png \
- images/kcmpci.png \
- images/invite.png \
- images/invite-disabled.png \
- images/hold.png \
- images/hold-disabled.png \
- images/gear.png \
- images/filesave \
- images/fileopen.png \
- images/fileopen-disabled.png \
- images/filenew \
- images/favorites.png \
- images/exit.png \
- images/encrypted_verified.png \
- images/encrypted32.png \
- images/encrypted.png \
- images/encrypted-disabled.png \
- images/editpaste \
- images/editdelete.png \
- images/editcut \
- images/editcopy \
- images/edit16.png \
- images/edit.png \
- images/dtmf.png \
- images/dtmf-star.png \
- images/dtmf-pound.png \
- images/dtmf-disabled.png \
- images/dtmf-d.png \
- images/dtmf-c.png \
- images/dtmf-b.png \
- images/dtmf-a.png \
- images/dtmf-9.png \
- images/dtmf-8.png \
- images/dtmf-7.png \
- images/dtmf-6.png \
- images/dtmf-5.png \
- images/dtmf-4.png \
- images/dtmf-3.png \
- images/dtmf-2.png \
- images/dtmf-1.png \
- images/dtmf-0.png \
- images/contexthelp.png \
- images/consult-xfer.png \
- images/conference.png \
- images/conference-disabled.png \
- images/conf.png \
- images/conf-disabled.png \
- images/clock.png \
- images/cf.png \
- images/cf-disabled.png \
- images/cancel.png \
- images/cancel-disabled.png \
- images/bye.png \
- images/bye-disabled.png \
- images/buddy.png \
- images/auto_answer.png \
- images/auto_answer-disabled.png \
- images/attach.png \
- images/answer.png \
- images/answer-disabled.png \
- images/1uparrow.png \
- images/1rightarrow.png \
- images/1leftarrow.png \
- images/1leftarrow-yellow.png \
- images/1downarrow.png
diff --git a/src/im/Makefile.am b/src/im/Makefile.am
deleted file mode 100644
index 300a43a..0000000
--- a/src/im/Makefile.am
+++ /dev/null
@@ -1,9 +0,0 @@
-AM_CPPFLAGS = -Wall $(CCRTP_CFLAGS) $(XML2_CFLAGS) -I$(top_srcdir)/src
-
-noinst_LIBRARIES = libim.a
-
-libim_a_SOURCES =\
- im_iscomposing_body.cpp\
- msg_session.cpp\
- im_iscomposing_body.h\
- msg_session.h
diff --git a/src/mwi/Makefile.am b/src/mwi/Makefile.am
deleted file mode 100644
index 29415e6..0000000
--- a/src/mwi/Makefile.am
+++ /dev/null
@@ -1,29 +0,0 @@
-AM_CPPFLAGS = \
- -Wall \
- -I$(top_srcdir)/src \
- $(CCRTP_CFLAGS) \
- $(XML2_CFLAGS)
-
-#noinst_PROGRAMS = mwitest
-
-#mwitest_SOURCES = mwitest.cpp
-
-#mwitest_LDADD = $(top_builddir)/src/util.o\
-# $(top_builddir)/src/mwi/libmwi.a\
-# $(top_builddir)/src/sockets/libsocket.a\
-# $(top_builddir)/src/parser/libsipparser.a\
-# $(top_builddir)/src/sdp/libsdpparser.a\
-# -lresolv\
-# -lboost_regex
-
-noinst_LIBRARIES = libmwi.a
-
-libmwi_a_SOURCES =\
- mwi.cpp\
- mwi_dialog.cpp\
- mwi_subscription.cpp\
- simple_msg_sum_body.cpp\
- mwi.h\
- mwi_dialog.h\
- mwi_subscription.h\
- simple_msg_sum_body.h
diff --git a/src/parser/Makefile.am b/src/parser/Makefile.am
deleted file mode 100644
index 67bf122..0000000
--- a/src/parser/Makefile.am
+++ /dev/null
@@ -1,195 +0,0 @@
-AM_CPPFLAGS = -Wall $(XML2_CFLAGS) -I$(top_srcdir)/src
-
-# bison flags
-AM_YFLAGS = -d
-
-# flex flags
-# The -s flag is not used on purpose. As it is better to have
-# some unmatched symbols echoed to stdout then a jammed flex
-# causing the process to die.
-AM_LFLAGS = -i
-
-# The output of bison cannot be compiled with the -O2 flag.
-# With the -O2 flag g++ crashes. The -O2 flag is stripped from
-# CXXFLAGS by configure.
-# rumen:
-# Above don't work.
-# It is enought to drop -funit-at-a-time set when -O2 flag is set.
-# The error is:
-# "cc1plus: out of memory allocating 336746144 bytes after a total of 10846208 bytes."
-# Note user can specify -O2 in CXXFLAGS at configure time !
-# Also note that unit-at-a-time if new for gcc 3.4 !
-# See http://lists.debian.org/debian-gcc/2006/07/msg00281.html
-# that claim to be fixed in gcc-4.1+ .
-
-AM_CXXFLAGS = -fno-unit-at-a-time
-
-
-# This target is only for testing the parser in isolation
-#noinst_PROGRAMS = sipparse
-#
-#sipparse_SOURCES = main.cpp
-#
-#sipparse_LDADD = $(top_builddir)/src/util.o\
-# $(top_builddir)/src/parser/libsipparser.a\
-# $(top_builddir)/src/sdp/libsdpparser.a\
-# $(top_builddir)/src/sockets/libsocket.a\
-# -lresolv
-
-noinst_LIBRARIES = libsipparser.a
-
-libsipparser_a_SOURCES =\
- challenge.cpp\
- coding.cpp\
- credentials.cpp\
- definitions.cpp\
- hdr_accept.cpp\
- hdr_accept_encoding.cpp\
- hdr_accept_language.cpp\
- hdr_alert_info.cpp\
- hdr_allow.cpp\
- hdr_allow_events.cpp\
- hdr_auth_info.cpp\
- hdr_authorization.cpp\
- hdr_call_id.cpp\
- hdr_call_info.cpp\
- hdr_contact.cpp\
- hdr_content_disp.cpp\
- hdr_content_encoding.cpp\
- hdr_content_language.cpp\
- hdr_content_length.cpp\
- hdr_content_type.cpp\
- hdr_cseq.cpp\
- hdr_date.cpp\
- hdr_error_info.cpp\
- hdr_event.cpp\
- hdr_expires.cpp\
- hdr_from.cpp\
- hdr_in_reply_to.cpp\
- hdr_max_forwards.cpp\
- hdr_min_expires.cpp\
- hdr_mime_version.cpp\
- hdr_organization.cpp\
- hdr_priority.cpp\
- hdr_privacy.cpp\
- hdr_p_asserted_identity.cpp\
- hdr_p_preferred_identity.cpp\
- hdr_proxy_authenticate.cpp\
- hdr_proxy_authorization.cpp\
- hdr_proxy_require.cpp\
- hdr_rack.cpp\
- hdr_record_route.cpp\
- hdr_refer_sub.cpp\
- hdr_refer_to.cpp\
- hdr_referred_by.cpp\
- hdr_replaces.cpp\
- hdr_reply_to.cpp\
- hdr_require.cpp\
- hdr_request_disposition.cpp\
- hdr_retry_after.cpp\
- hdr_route.cpp\
- hdr_rseq.cpp\
- hdr_server.cpp\
- hdr_service_route.cpp\
- hdr_sip_etag.cpp\
- hdr_sip_if_match.cpp\
- hdr_subject.cpp\
- hdr_subscription_state.cpp\
- hdr_supported.cpp\
- hdr_timestamp.cpp\
- hdr_to.cpp\
- hdr_unsupported.cpp\
- hdr_user_agent.cpp\
- hdr_via.cpp\
- hdr_warning.cpp\
- hdr_www_authenticate.cpp\
- header.cpp\
- identity.cpp\
- media_type.cpp\
- milenage.cpp\
- parameter.cpp\
- parse_ctrl.cpp\
- parser.yxx\
- request.cpp\
- response.cpp\
- rijndael.cpp\
- route.cpp\
- scanner.lxx\
- sip_body.cpp\
- sip_message.cpp\
- challenge.h\
- coding.h\
- credentials.h\
- definitions.h\
- hdr_accept.h\
- hdr_accept_encoding.h\
- hdr_accept_language.h\
- hdr_alert_info.h\
- hdr_allow.h\
- hdr_allow_events.h\
- hdr_auth_info.h\
- hdr_authorization.h\
- hdr_call_id.h\
- hdr_call_info.h\
- hdr_contact.h\
- hdr_content_disp.h\
- hdr_content_encoding.h\
- hdr_content_language.h\
- hdr_content_length.h\
- hdr_content_type.h\
- hdr_cseq.h\
- hdr_date.h\
- hdr_error_info.h\
- hdr_event.h\
- hdr_expires.h\
- hdr_from.h\
- hdr_in_reply_to.h\
- hdr_max_forwards.h\
- hdr_min_expires.h\
- hdr_mime_version.h\
- hdr_organization.h\
- hdr_p_asserted_identity.h\
- hdr_p_preferred_identity.h\
- hdr_priority.h\
- hdr_privacy.h\
- hdr_proxy_authenticate.h\
- hdr_proxy_authorization.h\
- hdr_proxy_require.h\
- hdr_rack.h\
- hdr_record_route.h\
- hdr_refer_sub.h\
- hdr_refer_to.h\
- hdr_referred_by.h\
- hdr_replaces.h\
- hdr_reply_to.h\
- hdr_require.h\
- hdr_request_disposition.h\
- hdr_retry_after.h\
- hdr_route.h\
- hdr_rseq.h\
- hdr_server.h\
- hdr_service_route.h\
- hdr_sip_etag.h\
- hdr_sip_if_match.h\
- hdr_subject.h\
- hdr_subscription_state.h\
- hdr_supported.h\
- hdr_timestamp.h\
- hdr_to.h\
- hdr_unsupported.h\
- hdr_user_agent.h\
- hdr_via.h\
- hdr_warning.h\
- hdr_www_authenticate.h\
- header.h\
- identity.h\
- media_type.h\
- milenage.h\
- parameter.h\
- parse_ctrl.h\
- request.h\
- response.h\
- rijndael.h\
- route.h\
- sip_body.h\
- sip_message.h
diff --git a/src/patterns/Makefile.am b/src/patterns/Makefile.am
deleted file mode 100644
index 4dc022e..0000000
--- a/src/patterns/Makefile.am
+++ /dev/null
@@ -1,7 +0,0 @@
-AM_CPPFLAGS = -Wall -I$(top_srcdir)/src
-
-noinst_LIBRARIES = libpatterns.a
-
-libpatterns_a_SOURCES =\
- observer.cpp\
- observer.h
diff --git a/src/presence/Makefile.am b/src/presence/Makefile.am
deleted file mode 100644
index 17caf93..0000000
--- a/src/presence/Makefile.am
+++ /dev/null
@@ -1,17 +0,0 @@
-AM_CPPFLAGS = -Wall $(CCRTP_CFLAGS) $(XML2_CFLAGS) -I$(top_srcdir)/src
-
-noinst_LIBRARIES = libpresence.a
-
-libpresence_a_SOURCES =\
- buddy.cpp\
- pidf_body.cpp\
- presence_dialog.cpp\
- presence_epa.cpp\
- presence_state.cpp\
- presence_subscription.cpp\
- buddy.h\
- pidf_body.h\
- presence_dialog.h\
- presence_epa.h\
- presence_state.h\
- presence_subscription.h
diff --git a/src/sdp/Makefile.am b/src/sdp/Makefile.am
deleted file mode 100644
index ea3340c..0000000
--- a/src/sdp/Makefile.am
+++ /dev/null
@@ -1,27 +0,0 @@
-AM_CPPFLAGS = \
- -Wall \
- -I$(top_srcdir)/src\
- $(XML2_CFLAGS)
-
-AM_YFLAGS = -p yysdp -d
-AM_LFLAGS = -Pyysdp -olex.yy.c -i
-
-# This target is only for testing the parser in isolation
-# noinst_PROGRAMS = sdpparse
-
-# sdpparse_SOURCES = main.cpp
-
-# sdpparse_LDADD = $(top_builddir)/src/util.o\
-# $(top_builddir)/src/sdp/libsdpparser.a\
-# $(top_builddir)/src/parser/sip_body.o
-
-noinst_LIBRARIES = libsdpparser.a
-
-
-libsdpparser_a_SOURCES =\
- sdp.cpp\
- sdp_parse_ctrl.cpp\
- sdp_parser.yxx\
- sdp_scanner.lxx\
- sdp.h\
- sdp_parse_ctrl.h
diff --git a/src/sockets/Makefile.am b/src/sockets/Makefile.am
deleted file mode 100644
index fdcfce4..0000000
--- a/src/sockets/Makefile.am
+++ /dev/null
@@ -1,30 +0,0 @@
-AM_CPPFLAGS = \
- -Wall \
- -I$(top_srcdir)/src\
- $(XML2_CFLAGS)
-
-noinst_LIBRARIES = libsocket.a
-
-#noinst_PROGRAMS = srvinfo urlinfo
-#srvinfo_SOURCES = srvinfo.cpp
-#srvinfo_LDADD = $(top_builddir)/src/util.o\
-# $(top_builddir)/src/sockets/libsocket.a\
-# -lresolv
-#urlinfo_SOURCES = urlinfo.cpp
-#urlinfo_LDADD = $(top_builddir)/src/util.o\
-# $(top_builddir)/src/sockets/libsocket.a\
-# -lresolv
-
-libsocket_a_SOURCES =\
- connection.cpp\
- connection_table.cpp\
- dnssrv.cpp\
- interfaces.cpp\
- socket.cpp\
- url.cpp\
- connection.h\
- connection_table.h\
- dnssrv.h\
- interfaces.h\
- socket.h\
- url.h
diff --git a/src/stun/Makefile.am b/src/stun/Makefile.am
deleted file mode 100644
index f52face..0000000
--- a/src/stun/Makefile.am
+++ /dev/null
@@ -1,15 +0,0 @@
-AM_CPPFLAGS = \
- -Wall \
- -I$(top_srcdir)/src \
- $(CCRTP_CFLAGS)\
- $(XML2_CFLAGS)
-
-noinst_LIBRARIES = libstun.a
-
-libstun_a_SOURCES =\
- stun.cxx\
- stun_transaction.cpp\
- udp.cxx\
- stun.h\
- stun_transaction.h\
- udp.h
diff --git a/src/threads/Makefile.am b/src/threads/Makefile.am
deleted file mode 100644
index 221bddf..0000000
--- a/src/threads/Makefile.am
+++ /dev/null
@@ -1,11 +0,0 @@
-AM_CPPFLAGS = -Wall -I$(top_srcdir)/src
-
-noinst_LIBRARIES = libthread.a
-
-libthread_a_SOURCES =\
- thread.cpp\
- mutex.cpp\
- sema.cpp\
- thread.h\
- mutex.h\
- sema.h
diff --git a/src/utils/Makefile.am b/src/utils/Makefile.am
deleted file mode 100644
index e4d8fb5..0000000
--- a/src/utils/Makefile.am
+++ /dev/null
@@ -1,11 +0,0 @@
-AM_CPPFLAGS = -Wall $(XML2_CFLAGS) -I$(top_srcdir)/src
-
-noinst_LIBRARIES = libutils.a
-
-libutils_a_SOURCES =\
- file_utils.cpp\
- mime_database.cpp\
- file_utils.h\
- mime_database.h\
- record_file.h\
- record_file.hpp