Browse Source

Correct JackClient::Activate so that first kGraphOrderCallback can be received by the client notification thread.

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@2019 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.71
sletz 17 years ago
parent
commit
8cd79f74be
9 changed files with 211 additions and 23 deletions
  1. +5
    -0
      ChangeLog
  2. +2
    -3
      common/JackAPI.cpp
  3. +13
    -10
      common/JackClient.cpp
  4. +3
    -1
      common/JackLibAPI.cpp
  5. +2
    -0
      common/JackServerAPI.cpp
  6. +1
    -1
      common/JackTransportEngine.cpp
  7. +11
    -7
      example-clients/control.c
  8. +4
    -1
      linux/Makefile
  9. +170
    -0
      macosx/Jackdmp.xcodeproj/project.pbxproj

+ 5
- 0
ChangeLog View File

@@ -20,6 +20,11 @@ Fernando Lopez-Lezcano
Jackdmp changes log Jackdmp changes log
--------------------------- ---------------------------


2008-03-17 Stephane Letz <letz@grame.fr>
* New jack_control client to test notifications when linked to the server library.
* Correct JackClient::Activate so that first kGraphOrderCallback can be received by the client notification thread.

2008-03-16 Stephane Letz <letz@grame.fr> 2008-03-16 Stephane Letz <letz@grame.fr>
* Use engine in JackAlsaDriver::port_register and JackAlsaDriver::port_unregister. * Use engine in JackAlsaDriver::port_register and JackAlsaDriver::port_unregister.


+ 2
- 3
common/JackAPI.cpp View File

@@ -272,10 +272,9 @@ EXPORT jack_client_t* jack_client_new(const char* client_name)
{ {
jack_error("jack_client_new: deprecated"); jack_error("jack_client_new: deprecated");
int options = JackUseExactName; int options = JackUseExactName;
if (getenv("JACK_START_SERVER") == NULL)
if (getenv("JACK_START_SERVER") == NULL)
options |= JackNoStartServer; options |= JackNoStartServer;
va_list ap;
return jack_client_open_aux(client_name, (jack_options_t)options, NULL, ap);
return jack_client_open_aux(client_name, (jack_options_t)options, NULL, NULL);
} }


EXPORT void* jack_port_get_buffer(jack_port_t* port, jack_nframes_t frames) EXPORT void* jack_port_get_buffer(jack_port_t* port, jack_nframes_t frames)


+ 13
- 10
common/JackClient.cpp View File

@@ -234,9 +234,10 @@ int JackClient::ClientNotify(int refnum, const char* name, int notify, int sync,
\brief We need to start thread before activating in the server, otherwise the FW driver \brief We need to start thread before activating in the server, otherwise the FW driver
connected to the client may not be activated. connected to the client may not be activated.
*/ */

int JackClient::Activate() int JackClient::Activate()
{ {
jack_log("JackClient::Activate ");
jack_log("JackClient::Activate");
if (IsActive()) if (IsActive())
return 0; return 0;


@@ -252,20 +253,22 @@ int JackClient::Activate()


if (StartThread() < 0) if (StartThread() < 0)
return -1; return -1;

int result = -1;
fChannel->ClientActivate(GetClientControl()->fRefNum, &result);
if (result < 0)
return result;

if (fSync != NULL) /* If a SyncCallback is pending... */ if (fSync != NULL) /* If a SyncCallback is pending... */
SetSyncCallback(fSync, fSyncArg); SetSyncCallback(fSync, fSyncArg);


if (fTimebase != NULL) /* If a TimebaseCallback is pending... */ if (fTimebase != NULL) /* If a TimebaseCallback is pending... */
SetTimebaseCallback(fConditionnal, fTimebase, fTimebaseArg); SetTimebaseCallback(fConditionnal, fTimebase, fTimebaseArg);

/*
Insertion of client in the graph will cause a kGraphOrderCallback notification
to be delivered by the server, the client wants to receive it.
*/
GetClientControl()->fActive = true; GetClientControl()->fActive = true;
return 0;

int result = -1;
fChannel->ClientActivate(GetClientControl()->fRefNum, &result);
return result;
} }


/*! /*!
@@ -273,7 +276,7 @@ int JackClient::Activate()
*/ */
int JackClient::Deactivate() int JackClient::Deactivate()
{ {
jack_log("JackClient::Deactivate ");
jack_log("JackClient::Deactivate");
if (!IsActive()) if (!IsActive())
return 0; return 0;




+ 3
- 1
common/JackLibAPI.cpp View File

@@ -83,7 +83,9 @@ EXPORT jack_client_t* jack_client_open_aux(const char* ext_client_name, jack_opt
/* parse variable arguments */ /* parse variable arguments */
if (ap) if (ap)
jack_varargs_parse(options, ap, &va); jack_varargs_parse(options, ap, &va);

else
jack_varargs_init(&va);
JackLibGlobals::Init(); // jack library initialisation JackLibGlobals::Init(); // jack library initialisation


#ifndef WIN32 #ifndef WIN32


+ 2
- 0
common/JackServerAPI.cpp View File

@@ -85,6 +85,8 @@ EXPORT jack_client_t* jack_client_open_aux(const char* ext_client_name, jack_opt
/* parse variable arguments */ /* parse variable arguments */
if (ap) if (ap)
jack_varargs_parse(options, ap, &va); jack_varargs_parse(options, ap, &va);
else
jack_varargs_init(&va);


if (!JackServerGlobals::Init()) { // jack server initialisation if (!JackServerGlobals::Init()) { // jack server initialisation
int my_status1 = (JackFailure | JackServerError); int my_status1 = (JackFailure | JackServerError);


+ 1
- 1
common/JackTransportEngine.cpp View File

@@ -111,7 +111,7 @@ void JackTransportEngine::MakeAllStarting(JackClientInterface** table)
if (client) { if (client) {
// Unactive clients don't have their process function called at all, they appear as already "rolling" for the transport.... // Unactive clients don't have their process function called at all, they appear as already "rolling" for the transport....
client->GetClientControl()->fTransportState = (client->GetClientControl()->fActive) ? JackTransportStarting : JackTransportRolling; client->GetClientControl()->fTransportState = (client->GetClientControl()->fActive) ? JackTransportStarting : JackTransportRolling;
jack_log("MakeAllStarting refnum = %ld ", i);
jack_log("MakeAllStarting refnum = %ld", i);
} }
} }
jack_log("MakeAllStarting"); jack_log("MakeAllStarting");


+ 11
- 7
example-clients/control.c View File

@@ -22,17 +22,21 @@ static int Jack_Graph_Order_Callback(void *arg)
printf("Jack_Graph_Order_Callback count = %ld\n", reorder++); printf("Jack_Graph_Order_Callback count = %ld\n", reorder++);
ports = jack_get_ports(client, NULL, NULL, JackPortIsPhysical|JackPortIsOutput); ports = jack_get_ports(client, NULL, NULL, JackPortIsPhysical|JackPortIsOutput);
for (i = 0; ports[i]; ++i) {
printf("name: %s\n", ports[i]);
if (ports) {
for (i = 0; ports[i]; ++i) {
printf("name: %s\n", ports[i]);
}
free(ports);
} }
free(ports);
ports = jack_get_ports(client, NULL, NULL, JackPortIsPhysical|JackPortIsInput); ports = jack_get_ports(client, NULL, NULL, JackPortIsPhysical|JackPortIsInput);
for (i = 0; ports[i]; ++i) {
printf("name: %s\n", ports[i]);
if (ports) {
for (i = 0; ports[i]; ++i) {
printf("name: %s\n", ports[i]);
}
free(ports);
} }
free(ports);
return 0; return 0;
} }




+ 4
- 1
linux/Makefile View File

@@ -98,6 +98,9 @@ jack_load: ipload.o


jack_unload: ipunload.o jack_unload: ipunload.o
$(CXX) $(CXXFLAGS) ipunload.o -L. -ljackmp -o jack_unload $(CXX) $(CXXFLAGS) ipunload.o -L. -ljackmp -o jack_unload

jack_control: control.o
$(CXX) $(CXXFLAGS) control.o -L. -ljackservermp -o jack_control
$(TARGET_LINUX_SERVER_LIB) : $(objects_common_server_lib) $(TARGET_LINUX_SERVER_LIB) : $(objects_common_server_lib)
$(CXX) $(CXXFLAGS) -shared $(objects_common_server_lib) $(LIB_LINUX) -o $(TARGET_LINUX_SERVER_LIB) $(CXX) $(CXXFLAGS) -shared $(objects_common_server_lib) $(LIB_LINUX) -o $(TARGET_LINUX_SERVER_LIB)
@@ -183,7 +186,7 @@ remove:
clean : clean :
rm -f *.o rm -f *.o
rm -f $(TARGET_LINUX_SERVER) $(TARGET_LINUX_SERVER_LIB) $(TARGET_LINUX_CLIENT_LIB) $(TARGET_LINUX_WRAPPER_LIB) $(TARGET_LINUX_ALSA) $(TARGET_LINUX_FREEBOB) $(TARGET_LINUX_FIREWIRE) $(TARGET_LINUX_DUMMY) \ rm -f $(TARGET_LINUX_SERVER) $(TARGET_LINUX_SERVER_LIB) $(TARGET_LINUX_CLIENT_LIB) $(TARGET_LINUX_WRAPPER_LIB) $(TARGET_LINUX_ALSA) $(TARGET_LINUX_FREEBOB) $(TARGET_LINUX_FIREWIRE) $(TARGET_LINUX_DUMMY) \
synchroClient synchroServer synchroServerClient testSem jack_test jack_load jack_unload inprocess.so
synchroClient synchroServer synchroServerClient testSem jack_test jack_load jack_unload inprocess.so jack_control
depend : depend :
#makedepend -w120 -Y -- $(CXXFLAGS) -- $(sources) #makedepend -w120 -Y -- $(CXXFLAGS) -- $(sources)




+ 170
- 0
macosx/Jackdmp.xcodeproj/project.pbxproj View File

@@ -62,6 +62,7 @@
4B5A1BCF0CD1CCC80005BF74 /* PBXTargetDependency */, 4B5A1BCF0CD1CCC80005BF74 /* PBXTargetDependency */,
4BFA99440AAAED90009E916C /* PBXTargetDependency */, 4BFA99440AAAED90009E916C /* PBXTargetDependency */,
4BFA99460AAAED90009E916C /* PBXTargetDependency */, 4BFA99460AAAED90009E916C /* PBXTargetDependency */,
4BA7FECD0D8E76810017FF73 /* PBXTargetDependency */,
4BFA99480AAAED90009E916C /* PBXTargetDependency */, 4BFA99480AAAED90009E916C /* PBXTargetDependency */,
4BFA994A0AAAED90009E916C /* PBXTargetDependency */, 4BFA994A0AAAED90009E916C /* PBXTargetDependency */,
4BFA994C0AAAED90009E916C /* PBXTargetDependency */, 4BFA994C0AAAED90009E916C /* PBXTargetDependency */,
@@ -530,6 +531,8 @@
4B978DEE0A31D099009E2DD1 /* JackPortAudioDriver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B978DEC0A31D099009E2DD1 /* JackPortAudioDriver.cpp */; }; 4B978DEE0A31D099009E2DD1 /* JackPortAudioDriver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B978DEC0A31D099009E2DD1 /* JackPortAudioDriver.cpp */; };
4BA692B30CBE4C2D00EAD520 /* ipload.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BA692B20CBE4C2D00EAD520 /* ipload.c */; }; 4BA692B30CBE4C2D00EAD520 /* ipload.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BA692B20CBE4C2D00EAD520 /* ipload.c */; };
4BA692D70CBE4CC600EAD520 /* ipunload.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BA692D60CBE4CC600EAD520 /* ipunload.c */; }; 4BA692D70CBE4CC600EAD520 /* ipunload.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BA692D60CBE4CC600EAD520 /* ipunload.c */; };
4BA7FEC90D8E76650017FF73 /* control.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BA7FEC80D8E76650017FF73 /* control.c */; };
4BA7FECA0D8E76650017FF73 /* control.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BA7FEC80D8E76650017FF73 /* control.c */; };
4BAB95B80B9E20B800A0C723 /* JackPortType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BAB95B60B9E20B800A0C723 /* JackPortType.cpp */; }; 4BAB95B80B9E20B800A0C723 /* JackPortType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BAB95B60B9E20B800A0C723 /* JackPortType.cpp */; };
4BAB95B90B9E20B800A0C723 /* JackPortType.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BAB95B70B9E20B800A0C723 /* JackPortType.h */; }; 4BAB95B90B9E20B800A0C723 /* JackPortType.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BAB95B70B9E20B800A0C723 /* JackPortType.h */; };
4BAB95BA0B9E20B800A0C723 /* JackPortType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BAB95B60B9E20B800A0C723 /* JackPortType.cpp */; }; 4BAB95BA0B9E20B800A0C723 /* JackPortType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BAB95B60B9E20B800A0C723 /* JackPortType.cpp */; };
@@ -865,6 +868,13 @@
remoteGlobalIDString = 4BA692CA0CBE4C9000EAD520; remoteGlobalIDString = 4BA692CA0CBE4C9000EAD520;
remoteInfo = "jack_unload Universal"; remoteInfo = "jack_unload Universal";
}; };
4BA7FECC0D8E76810017FF73 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 4BA7FEB90D8E76270017FF73 /* jack_control Universal */;
remoteInfo = "jack_control Universal";
};
4BD624D20CBCF55700DE782F /* PBXContainerItemProxy */ = { 4BD624D20CBCF55700DE782F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy; isa = PBXContainerItemProxy;
containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
@@ -1098,6 +1108,8 @@
4BA692B20CBE4C2D00EAD520 /* ipload.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = ipload.c; path = "../example-clients/ipload.c"; sourceTree = SOURCE_ROOT; }; 4BA692B20CBE4C2D00EAD520 /* ipload.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = ipload.c; path = "../example-clients/ipload.c"; sourceTree = SOURCE_ROOT; };
4BA692D40CBE4C9000EAD520 /* jack_unload */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = jack_unload; sourceTree = BUILT_PRODUCTS_DIR; }; 4BA692D40CBE4C9000EAD520 /* jack_unload */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = jack_unload; sourceTree = BUILT_PRODUCTS_DIR; };
4BA692D60CBE4CC600EAD520 /* ipunload.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = ipunload.c; path = "../example-clients/ipunload.c"; sourceTree = SOURCE_ROOT; }; 4BA692D60CBE4CC600EAD520 /* ipunload.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = ipunload.c; path = "../example-clients/ipunload.c"; sourceTree = SOURCE_ROOT; };
4BA7FEC30D8E76270017FF73 /* jack_control */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = jack_control; sourceTree = BUILT_PRODUCTS_DIR; };
4BA7FEC80D8E76650017FF73 /* control.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = control.c; path = "../example-clients/control.c"; sourceTree = SOURCE_ROOT; };
4BAB95B60B9E20B800A0C723 /* JackPortType.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = JackPortType.cpp; path = ../common/JackPortType.cpp; sourceTree = SOURCE_ROOT; }; 4BAB95B60B9E20B800A0C723 /* JackPortType.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = JackPortType.cpp; path = ../common/JackPortType.cpp; sourceTree = SOURCE_ROOT; };
4BAB95B70B9E20B800A0C723 /* JackPortType.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = JackPortType.h; path = ../common/JackPortType.h; sourceTree = SOURCE_ROOT; }; 4BAB95B70B9E20B800A0C723 /* JackPortType.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = JackPortType.h; path = ../common/JackPortType.h; sourceTree = SOURCE_ROOT; };
4BAB95EC0B9E21A500A0C723 /* JackAudioPort.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = JackAudioPort.cpp; path = ../common/JackAudioPort.cpp; sourceTree = SOURCE_ROOT; }; 4BAB95EC0B9E21A500A0C723 /* JackAudioPort.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = JackAudioPort.cpp; path = ../common/JackAudioPort.cpp; sourceTree = SOURCE_ROOT; };
@@ -1588,6 +1600,13 @@
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
}; };
4BA7FEBD0D8E76270017FF73 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
4BD623F20CBCF0F000DE782F /* Frameworks */ = { 4BD623F20CBCF0F000DE782F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase; isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
@@ -1730,6 +1749,7 @@
4B0A296D0D5231DC002EFF74 /* jack_mp_thread_wait */, 4B0A296D0D5231DC002EFF74 /* jack_mp_thread_wait */,
4B0A2A650D524AB2002EFF74 /* jack_mp_thread_wait */, 4B0A2A650D524AB2002EFF74 /* jack_mp_thread_wait */,
4B57F5950D72C27900B4E719 /* jack_thread_wait1 */, 4B57F5950D72C27900B4E719 /* jack_thread_wait1 */,
4BA7FEC30D8E76270017FF73 /* jack_control */,
); );
name = Products; name = Products;
sourceTree = "<group>"; sourceTree = "<group>";
@@ -1737,6 +1757,7 @@
4B03383E0797E19900686131 /* Simple clients */ = { 4B03383E0797E19900686131 /* Simple clients */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
4BA7FEC80D8E76650017FF73 /* control.c */,
4B0A29820D523269002EFF74 /* mp_tw.cpp */, 4B0A29820D523269002EFF74 /* mp_tw.cpp */,
4B57F5BA0D72C2B000B4E719 /* tw1.c */, 4B57F5BA0D72C2B000B4E719 /* tw1.c */,
4B0A28EC0D520852002EFF74 /* tw.c */, 4B0A28EC0D520852002EFF74 /* tw.c */,
@@ -2670,6 +2691,13 @@
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
}; };
4BA7FEBA0D8E76270017FF73 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
4BD623EE0CBCF0F000DE782F /* Headers */ = { 4BD623EE0CBCF0F000DE782F /* Headers */ = {
isa = PBXHeadersBuildPhase; isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
@@ -3721,6 +3749,25 @@
productReference = 4BA692D40CBE4C9000EAD520 /* jack_unload */; productReference = 4BA692D40CBE4C9000EAD520 /* jack_unload */;
productType = "com.apple.product-type.tool"; productType = "com.apple.product-type.tool";
}; };
4BA7FEB90D8E76270017FF73 /* jack_control Universal */ = {
isa = PBXNativeTarget;
buildConfigurationList = 4BA7FEBF0D8E76270017FF73 /* Build configuration list for PBXNativeTarget "jack_control Universal" */;
buildPhases = (
4BA7FEBA0D8E76270017FF73 /* Headers */,
4BA7FEBB0D8E76270017FF73 /* Sources */,
4BA7FEBD0D8E76270017FF73 /* Frameworks */,
4BA7FEBE0D8E76270017FF73 /* Rez */,
);
buildRules = (
);
dependencies = (
);
name = "jack_control Universal";
productInstallPath = /usr/local/bin;
productName = jack_lsp;
productReference = 4BA7FEC30D8E76270017FF73 /* jack_control */;
productType = "com.apple.product-type.tool";
};
4BD623ED0CBCF0F000DE782F /* inprocess */ = { 4BD623ED0CBCF0F000DE782F /* inprocess */ = {
isa = PBXNativeTarget; isa = PBXNativeTarget;
buildConfigurationList = 4BD623F30CBCF0F000DE782F /* Build configuration list for PBXNativeTarget "inprocess" */; buildConfigurationList = 4BD623F30CBCF0F000DE782F /* Build configuration list for PBXNativeTarget "inprocess" */;
@@ -3844,6 +3891,7 @@
4B699D27097D421600A18468 /* testSem Universal */, 4B699D27097D421600A18468 /* testSem Universal */,
4B699D3F097D421600A18468 /* zombie Universal */, 4B699D3F097D421600A18468 /* zombie Universal */,
4BE6C6910A3E096F005A203A /* jack_test Universal */, 4BE6C6910A3E096F005A203A /* jack_test Universal */,
4BA7FEB90D8E76270017FF73 /* jack_control Universal */,
4BE99D260AD7A04800C59091 /* jack_cpu Universal */, 4BE99D260AD7A04800C59091 /* jack_cpu Universal */,
4BA692A60CBE4BC700EAD520 /* jack_load Universal */, 4BA692A60CBE4BC700EAD520 /* jack_load Universal */,
4BA692CA0CBE4C9000EAD520 /* jack_unload Universal */, 4BA692CA0CBE4C9000EAD520 /* jack_unload Universal */,
@@ -4258,6 +4306,13 @@
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
}; };
4BA7FEBE0D8E76270017FF73 /* Rez */ = {
isa = PBXRezBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
4BE6C69E0A3E096F005A203A /* Rez */ = { 4BE6C69E0A3E096F005A203A /* Rez */ = {
isa = PBXRezBuildPhase; isa = PBXRezBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
@@ -4411,6 +4466,7 @@
4B35C4F40D4731D1000DE7AE /* JackDebugClient.cpp in Sources */, 4B35C4F40D4731D1000DE7AE /* JackDebugClient.cpp in Sources */,
4B35C4F50D4731D1000DE7AE /* JackTools.cpp in Sources */, 4B35C4F50D4731D1000DE7AE /* JackTools.cpp in Sources */,
4B57F5BB0D72C2B000B4E719 /* tw1.c in Sources */, 4B57F5BB0D72C2B000B4E719 /* tw1.c in Sources */,
4BA7FEC90D8E76650017FF73 /* control.c in Sources */,
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
}; };
@@ -4917,6 +4973,14 @@
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
}; };
4BA7FEBB0D8E76270017FF73 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
4BA7FECA0D8E76650017FF73 /* control.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
4BD623F00CBCF0F000DE782F /* Sources */ = { 4BD623F00CBCF0F000DE782F /* Sources */ = {
isa = PBXSourcesBuildPhase; isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
@@ -5175,6 +5239,11 @@
target = 4BA692CA0CBE4C9000EAD520 /* jack_unload Universal */; target = 4BA692CA0CBE4C9000EAD520 /* jack_unload Universal */;
targetProxy = 4BA693EA0CBE5BBA00EAD520 /* PBXContainerItemProxy */; targetProxy = 4BA693EA0CBE5BBA00EAD520 /* PBXContainerItemProxy */;
}; };
4BA7FECD0D8E76810017FF73 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 4BA7FEB90D8E76270017FF73 /* jack_control Universal */;
targetProxy = 4BA7FECC0D8E76810017FF73 /* PBXContainerItemProxy */;
};
4BD624D30CBCF55700DE782F /* PBXTargetDependency */ = { 4BD624D30CBCF55700DE782F /* PBXTargetDependency */ = {
isa = PBXTargetDependency; isa = PBXTargetDependency;
target = 4BD623ED0CBCF0F000DE782F /* inprocess */; target = 4BD623ED0CBCF0F000DE782F /* inprocess */;
@@ -11380,6 +11449,97 @@
}; };
name = Default; name = Default;
}; };
4BA7FEC00D8E76270017FF73 /* Development */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = (
i386,
ppc,
);
COPY_PHASE_STRIP = NO;
FRAMEWORK_SEARCH_PATHS = "";
GCC_DYNAMIC_NO_PIC = NO;
GCC_ENABLE_FIX_AND_CONTINUE = YES;
GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
HEADER_SEARCH_PATHS = ../common;
OTHER_CFLAGS = "";
OTHER_LDFLAGS = (
"-framework",
Jackmp,
);
OTHER_REZFLAGS = "";
PRODUCT_NAME = jack_lsp;
REZ_EXECUTABLE = YES;
SDKROOT = "";
SECTORDER_FLAGS = "";
WARNING_CFLAGS = (
"-Wmost",
"-Wno-four-char-constants",
"-Wno-unknown-pragmas",
);
ZERO_LINK = YES;
};
name = Development;
};
4BA7FEC10D8E76270017FF73 /* Deployment */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = (
i386,
ppc,
);
COPY_PHASE_STRIP = YES;
FRAMEWORK_SEARCH_PATHS = /Volumes/Document1/Developpement/ProjectsCVS/JackCVS/JackServerCPP/build;
GCC_ENABLE_FIX_AND_CONTINUE = NO;
HEADER_SEARCH_PATHS = ../common;
MACOSX_DEPLOYMENT_TARGET = 10.4;
OTHER_CFLAGS = "";
OTHER_LDFLAGS = (
"-framework",
Jackservermp,
);
OTHER_REZFLAGS = "";
PRODUCT_NAME = jack_control;
REZ_EXECUTABLE = YES;
SDKROOT = "";
SECTORDER_FLAGS = "";
WARNING_CFLAGS = (
"-Wmost",
"-Wno-four-char-constants",
"-Wno-unknown-pragmas",
);
ZERO_LINK = NO;
};
name = Deployment;
};
4BA7FEC20D8E76270017FF73 /* Default */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = (
i386,
ppc,
);
FRAMEWORK_SEARCH_PATHS = /Volumes/Document1/Developpement/ProjectsCVS/JackCVS/JackServerCPP/build;
HEADER_SEARCH_PATHS = ../common;
OTHER_CFLAGS = "";
OTHER_LDFLAGS = (
"-framework",
Jackmp,
);
OTHER_REZFLAGS = "";
PRODUCT_NAME = jack_lsp;
REZ_EXECUTABLE = YES;
SDKROOT = "";
SECTORDER_FLAGS = "";
WARNING_CFLAGS = (
"-Wmost",
"-Wno-four-char-constants",
"-Wno-unknown-pragmas",
);
};
name = Default;
};
4BD623F40CBCF0F000DE782F /* Development */ = { 4BD623F40CBCF0F000DE782F /* Development */ = {
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
buildSettings = { buildSettings = {
@@ -12469,6 +12629,16 @@
defaultConfigurationIsVisible = 0; defaultConfigurationIsVisible = 0;
defaultConfigurationName = Default; defaultConfigurationName = Default;
}; };
4BA7FEBF0D8E76270017FF73 /* Build configuration list for PBXNativeTarget "jack_control Universal" */ = {
isa = XCConfigurationList;
buildConfigurations = (
4BA7FEC00D8E76270017FF73 /* Development */,
4BA7FEC10D8E76270017FF73 /* Deployment */,
4BA7FEC20D8E76270017FF73 /* Default */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Default;
};
4BD623F30CBCF0F000DE782F /* Build configuration list for PBXNativeTarget "inprocess" */ = { 4BD623F30CBCF0F000DE782F /* Build configuration list for PBXNativeTarget "inprocess" */ = {
isa = XCConfigurationList; isa = XCConfigurationList;
buildConfigurations = ( buildConfigurations = (


Loading…
Cancel
Save